// ************************************
// British Craft Shop JS functions
// Ed Rackham / Clockwork Marketing
// Tuesday 19th Jan 2010
// ************************************


// showExtraMenu()
// Show the popup menu based on a provided top / left coordinates
//
// @param top: The top position of the element
// @param left: The left position of the element
function showExtraMenu(top, left){
	$('#sectionExtraMenu').css('top', top);
	$('#sectionExtraMenu').css('left', left);
	$('#sectionExtraMenu').fadeIn();
}

function build_search(el){
	$.ajax({
	   type: "POST",
	   url: "/ajax_handler.php",	   
	   data: "type=1&id=" + $(el).val(),
	   success: function(res){
	     $('#srchProductType').html(res);
		
	   }
 	});
}

function jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location=\'"+selObj.options[selObj.selectedIndex].value+"\'");
if (restore) selObj.selectedIndex=0;
}
