// JavaScript Document
$(document).ready(function() {
	
	var si = $("#pag_empresa").find("#form_rrhh").attr("rel");
	
	if(si == 'tabsi'){
		$(".tab_content").hide();
		$("ul.tabs li:last").addClass("act").show();
		$(".tab_content:last").show();
	}else{		
		$(".tab_content").hide();
		$("ul.tabs li:first").addClass("act").show();
		$(".tab_content:first").show();	
	}

	//On Click Event
	$("ul.tabs li").click(function() {

		$("ul.tabs li").removeClass("act");
		$(this).addClass("act");
		$(".tab_content").hide();

		var activeTab = $(this).find("a").attr("href");
		$(activeTab).fadeIn();
		return false;
	});
	
	//LIGHTBOX
	$(function() {
       $('#gallery a').lightBox();
	   $('#gallery2 a').lightBox();
    });
	
	//animacion
	$("#imp3-1").everyTime(10, function(){						 
		$("#imp3-1").animate({
			opacity:1
		}, 4000).animate({
			opacity:0
			}, 900).animate({
				opacity:0
				}, 4000).animate({
					opacity:1
					}, 900);
	});
		

});
