$(document).ready(function() {

	$("#bt_productos").bind("mouseenter", function(){
		$(".submenus").hide();
	});
	
	$("#bt_productos, #familias, .submenus").bind("mouseenter", function(){
		
		$("#menu_float").show();
	}).bind("mouseleave", function(){
		$("#menu_float").hide();	
		
	});
	
	$("#familias a").bind("mouseenter", function(){
		//console.log($(this).attr("id"))
		$(".submenus").hide();
		
		id = $(this).attr("id");
		$("#sub_"+id).show();		
	});
	
	$("#bt_mercados, #mercado").bind("mouseenter", function(){
		$("#menu_float2").show();		
	}).bind("mouseleave", function(){
		$("#menu_float2").hide();	
	});
		
	var g_btsub = '';
		
	$(".bts_home").bind("mouseenter", function(){
		$(".submenu_bt").hide();
		
		id = $(this).attr("id");
		id = id.substr(3,id.length);
		$("#sub_bt_"+id).show();
		g_btsub = id;
		
	}).bind("mouseleave", function(){
		$(".submenu_bt").hide();
	});
	
	$(".submenu_bt a").bind("mouseenter", function(){
		if($(this).parent().attr("id")=="sub_bt_"+g_btsub){
			$(this).parent().show();			
		}
	}).bind("mouseleave", function(){
		$(".submenu_bt").hide();
	});
	

		
 });

 

