// JavaScript Document
$(document).ready(function(){
	//Галерея
	$(".gallery a[rel^='prettyPhoto']").prettyPhoto({theme:'facebook'});
	
	$(".gray_img").hover(
		function(){
			var newsrc = $(this).attr('altsrc'); 
			$(this).attr('altsrc', $(this).attr('src'));
			$(this).attr('src', newsrc);
		},
		function(){
			var newsrc = $(this).attr('altsrc'); 
			$(this).attr('altsrc', $(this).attr('src'));
			$(this).attr('src', newsrc);
		}
	);
})

