function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
$(document).ready(function(){
	$('#Menu > li').hover(function(){ 
		$(this).find("ul").slideDown("fast");
	},function(){ 
		$(this).find("ul").slideUp("fast");
	});
	
	$("#per_tb").hide();
	$("#com_tb").hide();
	$("#peruser").click(function(){
		$("#per_tb").show();	
		$("#com_tb").hide();
	});
	$("#comuser").click(function(){
		$("#com_tb").show();	
		$("#per_tb").hide();
	});
	$("#count").change(function(){
		var count=$("#count").val();
		var price=$("#price").text();
		$.get("index.php?c=order&a=totalprice",{count:count,price:price},function(data){
			$("#totalprice").text(data);
		});
	});
});






