$(document).ready(    
		function(){	    	
		
		// ie6 png fix
		$("#container").pngFix(); 
		
		// dropdowns
		$("#navigation ul.dropdown").hover(
		  function () {
			$(this).parents(".main").find("a").addClass("selected");
		  }, 
		  function () {
			$(this).parents(".main").find("a").removeClass("selected");
		  }
		);

	
		/* home
		--------------------------------------------------------------*/
		if($('body').hasClass('page-template-template-gallery-php'))
		{
			// set first items
			$('#gallery-images-large .item').eq(0).show();
			$('#gallery-images-small .item').eq(0).find("a").addClass("selected");
			
			$('a.gallery-thumbnail').click(function() 
			{
				var id = $(this).parent().attr("id");
				id = id.replace("small-item-","");	
				id = id - 1;

				// hide others, show selected
				$('#gallery-images-large .item').hide();
				$('#gallery-images-large .item').eq(id).show();
				
				$('#gallery-images-small .item a').removeClass("selected");
				$('#gallery-images-small .item').eq(id).find("a").addClass("selected");

			});				
			
		}	
							
});
