$(document).ready(function(){

		$(".resumenEmpleados").hide();
   	    $("#empleados .dataBoxHeader").hide();
		$("#navButtons a").dropShadow({left: -2, top: 2, blur: 0, opacity: 0.5});
		
		
		$(".mainBoxLiderIzq").corner("tl");
		$(".mainBoxLiderDer").corner("tr");
		$(".mainBoxLiderFooter").corner("bottom");
		
		$(".wrapperMainBoxLider").each(function(){
				if($(".mainBoxLiderIzq",this).height() >= $(".mainBoxLiderDer",this).height())
				{
					$(".mainBoxLiderDer",this).height($(".mainBoxLiderIzq",this).height());
				}
				else
				{
					$(".mainBoxLiderIzq",this).height($(".mainBoxLiderDer",this).height());													
				}
		});
		$(".mainBoxLider").hide();
		
   	    $(".mainBoxLider").fadeIn(1500);
   	    $(".mainBoxLider").corner();
		
		var initTime = 500;
		$("#empleados .dataBoxHeader").show("blind");
   	    $(".resumenEmpleados").each(function(){
											 initTime=initTime+600;
											 $(this).fadeIn(initTime);
											 });

});


