
$(document).ready( function(){  
     
     $('#news').innerfade({
         animationtype: 'fade', 
         speed: 500, 
         timeout: 8500, 
         type: 'random', 
         containerheight: '130px' 
         });
         
         //slider
      //To switch directions up/down and left/right just place a "-" in front of the top/left attribute
	//Vertical Sliding
	$('.thumbs').css('overflow','hidden');
	$('.thumbs').hover(function(){
		$(".info", this).stop().animate({top:'0px'},{queue:false,duration:300});
	}, function() {
		$(".info", this).stop().animate({top:'147px'},{queue:false,duration:300});
	});

//Full Caption Sliding (Hidden to Visible)
 $('.inner').hover(function(){
 $(".info_portafolio", this).stop().animate({top:'100px'},{queue:false,duration:160});
 }, function() {
 $(".info_portafolio", this).stop().animate({top:'130px'},{queue:false,duration:160});
 }); 
 
 //Portafolio preview
 $("a[rel^='portafolio']").prettyPhoto({theme:'facebook'});
      
      }); 