$(document).ready(function(){

	$('.hover').hover(
	function(){ $(this).children('img').attr('src',$(this).children('img').attr('src').replace("up","over"));
	},
	function(){ $(this).children('img').attr('src',$(this).children('img').attr('src').replace("over","up"));
	});
	
$('.thumb img').load(function(){

if(this.width > this.height){
$(this).css('height','125px');
}else{
$(this).css('width','125px');

}


});

$('.fancybox').fancybox();

$('body.press .fancybox').fancybox({type: 'ajax',
autoDimensions: false,
width: 800,
height: 600,
padding: 40});


});
