/* Author: NEGROESQUISSO AGÊNCIA WEB LDA
http://www.negroesquisso.com
direccao@negroesquisso.com
FREE TO USE AND EDIT - JUST DON'T DELETE THE CREDITS
*/
$(window).load(function(){
	$("#signatureContainer").mouseover(function(){
		$(this).stop().animate({'right':'0'},{queue:false, duration:500});										
	}).mouseout(function(){
		$(this).stop().animate({'right':'-176px'},{queue:false, duration:500});	
	});
	
	$("#background").fullBg();
	$("#background").css("display","block");

});

	$(document).ready(function() {

		//Default Action
		$(".tab_content").hide(); //Hide all content
		$("ul.tabs li:first").addClass("active").show(); //Activate first tab
		$(".tab_content:first").show(); //Show first tab content
		
		//On Click Event
		$("ul.tabs li").click(function() {
			$("ul.tabs li").removeClass("active"); //Remove any "active" class
			$(this).addClass("active"); //Add "active" class to selected tab
			$(".tab_content").hide(); //Hide all tab content
			var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
			$(activeTab).fadeIn(); //Fade in the active content
			return false;
		});
		
		
		$("#tabContainer").show(); //Show tabContainer
	});	

