window.addEvent('domready', Init);	

function Init() {	
	if ($('txtUsername')) {
		if ($('txtUsername').value != "") {
			$('txtPassword').focus();				
		} else {
			$('txtUsername').focus();
		} //end if
	} //end if
	
	if ($('txtSearch')) {
		if ($('txtSearch').value == "") {
			if ($('hdnSearchMode').value == "Parts") $('txtSearch').value = "enter part number";
			if ($('hdnSearchMode').value == "Orders") $('txtSearch').value = "enter order code";
		} //end if
		
		$('txtSearch').addEvent('click', 
				function() { 
					if ($('txtSearch').value == "enter part number") $('txtSearch').value = "";
					if ($('txtSearch').value == "enter order code") $('txtSearch').value = "";
				}
		);
	} //end if

	if ($('txtTitle')) $('txtTitle').focus();
	if ($('txtFirstName')) $('txtFirstName').focus();
	
	Reorder();
} //Init

function BuyPart(partId) {
	$('hdnPartID').value = partId;
	$('frmParts').submit();
} //BuyPart

function FillingDeliveryAddress() {
	$('txtShippingFirstName').value = $('txtBillingFirstName').value;
	$('txtShippingLastName').value = $('txtBillingLastName').value;
	$('txtShippingAddress1').value = $('txtBillingAddress1').value;
	$('txtShippingAddress2').value = $('txtBillingAddress2').value;
	$('txtShippingTownCity').value = $('txtBillingTownCity').value;
	$('txtShippingCounty').value = $('txtBillingCounty').value;
	$('txtShippingPostcode').value = $('txtBillingPostcode').value;
	$('sltShippingCountryID').value = $('sltBillingCountryID').value;
} //FillingDeliveryAddress

function Reorder() {
	if ($('itemList')) {
		var sortableLists = new Sortables($('itemList'), {
			clone: true,
			handle: '.handle', 
			revert: {
				duration: 50
			},
			opacity: .1,
			onStart: function(el){
				/*el.highlight('#F3F865');*/	
			},
			onSort: function(el) {
				el.highlight('#7f7f7f');
			},
			onComplete: function(el) {
				$('hdnPostionIDs').value = this.serialize(0); 
			}
		}).attach();
	}
} //Reorder

