/**
 * @author jblaufuss
 */
 
 $(document).ready(function() {
	$('ul.sf-menu').superfish();
});


 function logout(){
	window.location = "http://www.agenterprise.com/index.php/home/logout"; 
 }
 
 
 function removeFromCart(id){
	 $('#'+id).remove();
	$.post('/index.php/products/removeFromCart/'+id,function(data){
												 $('#item_table').html(data);
												 
												 calcTotal();
												 });
}
function calcTotal(){
		$.post('/index.php/products/getCartTotal/false',function(data){
												 $('.total').html(data);
												
												 });
}

function setBillTo(custcode){
	
	$.post('/index.php/products/getSingleCustBillingAddress',{'code':custcode},function(data){
																$('#billingAddress').html(data);		 
																		 });
}
function setShipTo(custcode){
	
	$.post('/index.php/products/getSingleCustShippingAddress',{'code':custcode},function(data){
																$('#shippingAddress').html(data);		 
																		 });
}
function submitCart(userid){
	$('#generateInvoice').slideDown("slow");
	$('#cart_submit').hide();
	$.post('/index.php/products/submitCart',{'userid':userid,'notes':$('#notes').val(),'po':$('#po').val()},function(data){
														//crypta = Base64.encode(userid+","+data);
														//crypta = crypta;
										window.location = "http://www.agenterprise.com/index.php/customer/orderComplete";			   
													   });
	
}
