
from="";
function sample(id)
{
    if (from!=id)
	{
	    jQuery('#mex-res').slideDown('fast');
	    from=id;
	}
    else
	{
	    jQuery('#mex-res').slideUp('fast');
	    from=0;
	}

    jQuery('.b-sign').hide();
    $("#mex-res-img").html("<div id=\"img"+id+"\"><img src=\"img/"+id+".png\" /> "+"</div>");
	
    return false;

}


$('#linkOrder-mex').click(function(){
    document.location = '/order.php?n=' + $('#boxName-mex').val() + '&r=' + $('#boxRegion-mex').val() + '&v=' + $('#boxVar-mex').val();
    return false;
});


