// JavaScript Document
$(document).ready(function(){
     
   // hide all galleries intially. On hover add/remove class "selected"
   $('h3').next("ul").hide().end().hover(
		function(){ $(this).addClass("selected"); },
		function(){ $(this).removeClass("selected"); }																																																							    );
   
   // On click of h3 tag, review adjacent Ul 
   $('h3').click(function () { 
      	if ( $(this).next("ul").is(':hidden') ){ 
			$("h3").next("ul").slideUp("slow");
			$(this).next("ul").slideDown("slow"); 
		}
		
    });

    //show first image gallery
	$('h3:first').next("ul").show();
	
});	

