(function($){
	if ($('input.myBuyPageType').length) {
		mybuys.setPageType($('input.myBuyPageType').val());
		if ($('input.myBuyCgryId').length) mybuys.set('categoryid',$('input.myBuyCgryId').val());
		if ($('input.myBuyPrdId').length) mybuys.set('productid',$('input.myBuyPrdId').val());
		if ($('input.myBuyKywd').length) mybuys.set('keywords',$('input.myBuyKywd').val());
		if ($('input.myBuyOrderId').length) mybuys.set('orderid',$('input.myBuyOrderId').val());
		if ($('input.myBuyEmail').length) mybuys.set('email',$('input.myBuyEmail').val());
		if ($('input.myBuyAmount').length) mybuys.set('amount',$('input.myBuyAmount').val());
		if ($('input.myBuyOptIn').length) mybuys.set('optin',$('input.myBuyOptIn').val());
		$('input.myBuyEntry').each(function() {
			var count = $(this).val();
			mybuys.addOrderItemQtySubtotal($('input.'+count+'_partNum').val(),$('input.'+count+'_qty').val(),$('input.'+count+'_tot').val());
		});
	}
	mybuys.initPage();
})(jQuery);

