
  
  $(document).ready(function(){
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
	
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'200px'},{queue:false,duration:160});
	});
	
	
	
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid3.captionfull3').hover(function(){
		$(".cover", this).stop().animate({top:'70px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'200px'},{queue:false,duration:160});
	});
	
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgridR.captionfullR').hover(function(){
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'220px'},{queue:false,duration:160});
	});
	
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgridR2.captionfullR2').hover(function(){
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'120px'},{queue:false,duration:160});
	});
	
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgridR3.captionfullR3').hover(function(){
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'146px'},{queue:false,duration:160});
	});
	
	
	
});


// transparencia
        $(function() {

            $('.imgOpa').each(function() {

                $(this).hover(

                    function() {

                        $(this).stop().animate({ opacity: 0 }, 400);

                    },

                   function() {

                       $(this).stop().animate({ opacity: .5 }, 400);

                   })

                });

        });
		
		
			
// thumbs

		

