$(document).ready(function(){
$("ul.thumb li").hover(function() {
	$(this).css({'z-index' : '10'});
	$(this).find('img').addClass("hover").stop() 
		.animate({
			marginTop: '-5px', 
			marginLeft: '-5px',
			width: '15px', 
			height: '15px'
		}, 100); 

	} , function() {
	$(this).css({'z-index' : '0'}); 
	$(this).find('img').removeClass("hover").stop()  
		.animate({
			marginTop: '0', 
			marginLeft: '-4px',
			width: '10px', 
			height: '10px'
		}, 200);
});
$("ul.thumb li a").click(function() {
		//$("#colunRight").html('<center style="margin-top:250px;"><img src="http://www.oscarteixeira.com.br/wp-content/themes/OTX/imagens/loader.gif" border="0" /></center>');
		var mainImage = $(this).attr("href"); 
		$('#pho').hide().fadeOut('slow');
		$('#imgFolio').attr("src", mainImage).load(function() {
			$('#pho').fadeIn('slow');
		});


		
		//$("#colunRight").html('<img id="imgFolio" src="'+mainImage+'" border="0" />');
//		$("#colunRight img").attr({ src: mainImage });
		return false;		
	});
});
