$(document).ready(function(){
    ShowActionOnOver();
    $("#menu-blog").hide();
	
	$("#menu-blog").hover(
       function(){$("#menu-blog").show();},
       function(){$("#menu-blog").hide();}
    );
		
		
	$('#slider').orbit({          
		 animation: 'fade', //fade, horizontal-slide, vertical-slide
		 animationSpeed: 800, //how fast animations are
		 advanceSpeed: 4000, //if timer advance is enabled, time between transitions 
		 startClockOnMouseOut: true, //if timer should restart on MouseOut
		 startClockOnMouseOutAfter: 3000, //how long after mouseout timer should start again
		 directionalNav: true, //manual advancing directional navs
		 captions: true, //if has a title, will be placed at bottom
		 captionAnimationSpeed: 800, //how quickly to animate in caption on load and between captioned and uncaptioned photos
		 timer: true //if the circular timer is wanted
	});
	
	
	$('.expandir').click(function(e){
      $($(this).attr('href')).toggle();
	  return false;
	})

	$(".porfolio-ampliar").colorbox();


	
});

function ShowActionOnOver(){
	$(".menu .blog").hover(
       function(){$("#menu-blog").show();},
       function(){$("#menu-blog").hide();}
    );
}

