window.addEvent('domready', init);	

function init() {	
	if ($('productTabs')) {
		productTab = new mootabs('productTabs', { height: '280px', width: '650px', changeTransition: 'none', mouseOverClass: 'over', activateOnLoad: 'first' });
	} //end if

	if ($('tourTabs')) {
		tourTab = new mootabs('tourTabs', { height: '280px',  width: '650px', changeTransition: 'none', mouseOverClass: 'over', activateOnLoad: 'first' });
	} //end if

	if ($('txtUsername')) {
			if ($('txtUsername').value != "") {
				$('txtPassword').focus();				
			} else {
				$('txtUsername').focus();
			} //end if
	} //end if
	if ($('txtTitle')) $('txtTitle').focus();
	if ($('txtUrl')) $('txtUrl').focus();
	if ($('txtHeadline')) $('txtHeadline').focus();
	if ($('txtFullname')) $('txtFullname').focus();
	
	if ($('dress-ticker')) fnDressTickerStart();
	if ($('news-ticker')) fnNewsTickerStart();

	
	if ($('gallery-main-container')) {
		var myGallery;
		
		myGallery = new Gallery(	$$('.thumbnail'), 	//these are the thumbnail elements
				$('big-image'), 		//the big image
				$('gallery-container'),	//container which contains the pages
				{'prevHandle': $('prev'),	//previous page link 
				 'nextHandle': $('next'), 	//next page link
				 'loadingImage': '/images/loading.gif'	//loading image for thumbnails
				});
	
	} //end if
	
	if ($('homeImages')) {
		if ($(document.body).getElement('div.imageRotater')) {
			var scroller = new ContentScroller({slideDuration: 4500, fadeDuration: 500});
			scroller.addSlides($$('div.imageRotater img').setStyle('z-index', 1));
			scroller.start();
		}
	}	
} //init

function fnOrder(lngID1, lngOrderID1, lngID2, lngOrderID2, strMode, frm) {
	if (strMode == "Up") {
		frm.hdnID1.value = lngID2;
		frm.hdnOrderID1.value = lngOrderID1;
		frm.hdnID2.value = lngID1;
		frm.hdnOrderID2.value = lngOrderID2;
	} else if (strMode == "Down") {
		frm.hdnID1.value = lngID1;
		frm.hdnOrderID1.value = lngOrderID2;
		frm.hdnID2.value = lngID2;
		frm.hdnOrderID2.value = lngOrderID1;
	} //end if
	
	frm.submit();
} //fnOrder

function fnFillingDeliveryAddress() {
	$('txtShippingAddressLine1').value = $('txtBillingAddressLine1').value;
	$('txtShippingAddressLine2').value = $('txtBillingAddressLine2').value;
	$('txtShippingTown').value = $('txtBillingTown').value;
	$('txtShippingCounty').value = $('txtBillingCounty').value;
	$('txtShippingPostcode').value = $('txtBillingPostcode').value;
	$('sltShippingCountryID').value = $('sltBillingCountryID').value;
} //fnFillingDeliveryAddress

function fnGetGalleryRefNo() {
	if ($('sltCategoryID').value != 0) {
		$('hdnNewRefNo').value = "Yes";
		$('frmGallery').submit();
	} //end if
} //fnGetGalleryRefNo