
//----- Welcome -----

//Onload
$(document).ready(function() {
   
   	//Add gallery hover event
	$(".galleryImg").hover(
          
          //Hover
	  function () {
	  
	  	$(".imgHolder",this).css("opacity",.04);
	  	$(".imgTxt",this).show("fast");
	  
	  },
	  
	  //Out
	  function () {
	  	
	  	$(".imgHolder",this).css("opacity",1);
	  	$(".imgTxt",this).hide();
	  	
	  }
	
	);
	
	//Add gallery click event
	$(".galleryImg").mousedown(function(event){
		
		//Hide
		if($(".imgTxt",this).is(":visible")){
		
	  		$(".imgHolder",this).css("opacity",1);
	  		$(".imgTxt",this).hide("fast");
	  	
	  	//Show
		}else{
		
	  		$(".imgHolder",this).css("opacity",.04);
	  		$(".imgTxt",this).show("fast");
		
		}
		
		//Stop downstream events
		event.stopPropagation();
	
	});

});
