//////////////////////////////////////////////
/////   Opens Jquery
//////////////////////////////////////////////
$(document).ready(function(){
	
//////////////////////////////////////////////
/////   The sliding search container at the top of the page
//////////////////////////////////////////////
	
	if($('div#slideContainerContact')){
		$('a#slideContact').html('[ocultar cv]');
		$('a#slideContact').toggle(function(){
			
			$this = $(this);
			$('div#slideContainerContact').slideUp(800, function() { $this.html('[ver cv]')});
		},function(){
			$this = $(this)
			$('div#slideContainerContact').slideDown(800, function() { $this.html('[ocultar cv]')})
			
		});
	}

//////////////////////////////////////////////
/////   Closes Jquery
//////////////////////////////////////////////
});