var Across = {

	initMenu : function ()
	{
		$('.menu-top img').not('.active').hover(
			function(){
			
				var str = $(this).attr('src');
				$(this).attr('src', str.replace(".png", "_a.png"));
				
			},
			function(){

				var str = $(this).attr('src');
				$(this).attr('src', str.replace("_a.png", ".png"));
						
			}		
		);	
	},
	showVideo : function(vidid)
	{
		alert('ok');
	}
};

$(document).ready(function(){
	//$(".ref-imagesvideos a[rel^='prettyphoto']").prettyPhoto({theme:'facebook'});
	$("a[rel^='prettyphoto']").prettyPhoto({theme:'facebook'});
	Gallery.init($(".post_gallery"));
	Across.initMenu();
});


