$(document).ready(function(){
						   
	// img style
	$('.main>img').addClass('cont_img');
	
	//photo Gallery
	$('.gal a').hover(function(){
		$(this)
		.find('img')
		.animate({opacity:'0.5'},100)	
		.animate({opacity:'1'},300)	
	},function(){})
	
	$('.prazd a, .consult a').hover(function(){
		$(this)
		.find('img')
		.animate({opacity:'0.6'},10)	
		.animate({opacity:'1'},400)	
	},function(){})
	
	

	$(".gallery a[rel^='prettyPhoto']").prettyPhoto({theme:'facebook'});
	
		
	
});






