$(function()
{
	var div_to_show = '';
		
	$(".gallery div:not(:first)").css({ display : "none" });
	
	$(".gallery ul a").bind("click", function()
	{
		
		if(!$(this).hasClass('selected'))
		{
		
			div_to_show = $(this).attr("rel");	
			
			$(".gallery .selected").removeClass('selected');
			$(this).addClass("selected");
			
			$(".gallery").css("height", "1100px");
			
			$(".gallery .active").fadeOut(300 , function()
			{
				$(this).removeClass('active');
				
				$("."+div_to_show).fadeIn(300, function()
				{
					$(this).addClass('active');
					
					if ( $.browser.msie )
						if( $.browser.version == 6.0)
						{
						}
						else
						{
							$(".gallery").css({"height" : "auto"});
						}
						else{ $(".gallery").css({"height" : "auto"}); }
				})
			})
			
		}
		
		return false;
	})
	
})
