//
jQuery(document).ready(function($){

//Menu inicio

$('#home_nav_menu .menu-item a')
	.css({backgroundPosition: "-192px 0px"})
	.mouseover(function(){
		$(this).stop().animate({backgroundPosition:"(0px 0px)"},{duration:200});
	})
	.mouseout(function(){
		$(this).stop().animate({backgroundPosition:"(-192px 0px)"},{duration:200});
	});

//MENUS CABECERA

$('#hd_nav_list #menu-principal-cabecera .menu-item a').blend(300);

//Table
$("table tr:odd").addClass('tr_odd')

//TABS

$(".tyvek_box:first").show();
$("#tyvek_nav a:first").addClass("active_menu");

$("#tyvek_nav a").click( function () {
	//
	$(".tyvek_box").hide();
	$("#tyvek_nav a").removeClass("active_menu");
	//
	attr_val = $(this).attr("href");
	$(""+attr_val+"").fadeIn('fast');
	$(this).addClass("active_menu");
	return false;
})
$("form br").remove();
//ENS HERE	
});
