function menuShow(id, id1, id2, num, lang){
	
	if($("#c"+id).html() != ""){
		if('none' == $('#ifM_wrapper_1').css('display')){
			$('#ifM_wrapper_1').show('slow');
		} else {
			$("#c#ifM_wrapper_1").hide('slow');
			$("#c"+id).html("");
		}
		return false;
	}
	
	$("#c"+id1).html("");
	$("#c"+id).html('<div class="ifM_box"><div class="ifM_header"><a href="#" class="close"><img src="images/boton_cerrar_x.gif" border="0" /></a></div><div class="ifM_wrapper" id="ifM_wrapper_1"></div></div>');
	//This is for positioning the menu at the right place ;)
	$(".ifM_box").css('left', $(".menu_left").position().left + $(".menu_left").width() + 2);
	$("#c"+id).show('slow');
	 
	text = $("#" + id2).html();
	
	$('div#ifM_wrapper_1').fastFind(
	{
		url:	'libs/submenu.php',
		params:	{ 'current':num,'previous':false,'apiKey':'bd51b0648d268122996b9e68cfd86175' }
	});
	$('.ifM_header a').click(function () {
		var el = jQuery(this).parents('div.ifM_box').get(0);
		jQuery(el).fastFindToggle(true);
		return false;
	});
	$('#'+id2).click(function () {
		var el = jQuery(this).next('.ifM_box');
		jQuery(el).fastFindToggle();
		return false;
	}).html(text);
	// Hide the Box [ Safari Gives Error on Hide/Toggle/Css(display:none)/etc... ]
	var pivot = ($.browser.safari)?false:true;
	jQuery('div#debug').fastFindToggle(null,pivot);
}

function showProduct(page){
	var t = null;
	var a = page;
	var g = null;
	tb_show(t,a,g);
	//this.blur();
	return false;
}