
$(document).ready(function(){

	
	
	$('.AboutPhoto .AboutPhotoGall img').mouseover(function(){
		$(".Caption").hide();
		$(this).parent().next('.Caption').show();
	})
	
	$('.AboutPhoto .AboutPhotoGall img').mouseout(function(){
		$(".Caption").hide();		
	})
	
	
	
	$('.Myclass').mouseover(function(){
				//alert("hi");
		$(".Caption").hide();
		$(this).children('div').show();
	})
	
	$('.Myclass').mouseover(function(){
				//alert("hi");
		$(".Caption1").hide();
		$(this).children('div').show();
	})
	
});

