	var home_slide_timer, home_slide_pause;
	Event.observe(document, 'dom:loaded', function() {
	
		// navigation functions
		$$('#nav ul li').each(function(ul) {
			ul.onmouseover = function() {
				$(this).addClassName('selected');
				//if ($(this).down('ul')) $(this).down('ul').show();
				
				if (document.all && $('film-search') && $(this).down('ul') && $(this).down('ul').getElementsBySelector('li').length > 3)
					$$('#film-search select').each(function(x) { x.hide(); });
			}
			ul.onmouseout = function() {
				$(this).removeClassName('selected');
				if (document.all && $('film-search') && $(this).down('ul'))
					$$('#film-search select').each(function(x) { x.show(); });
			}
		});
		
		// member login 
		if ($('member-login')) {
			$('member-login').onclick = show_login;
		}
			
		// search field focus/blur events
		if ($('search_text')) {
			$('search_text').observe('focus', function() { if ($(this).value == 'search films') $(this).value = ''; });
			$('search_text').observe('blur', function() { if ($(this).value == '') $(this).value = 'search films'; });
		}
		
		// film list detail roll-overs
		$$('#film-listing .film .desc .light').each(function(x) {
			x.onmouseover = function() { $('film-description-popup').show().down('p').update($(this).down('span').innerHTML); }
			x.onmouseout = function() { $('film-description-popup').hide(); }
			x.onclick = function() { location.href = $(this).up('.film').down('.image').down('a').readAttribute('href'); }
		});
		
		// submit the form search on dropdown change
		$$('#film_search select').each(function(x) {
			x.onchange = function() { $(this).up('form').submit(); }
		});
		
		// text resizing
		$('text-small').onclick = function() { $('wrapper').style.fontSize = '1em'; return false; }
		$('text-medium').onclick = function() { $('wrapper').style.fontSize = '1.2em'; return false; }
		$('text-large').onclick = function() { $('wrapper').style.fontSize = '1.4em'; return false; }
		
	});
	
	Event.observe(document, 'mousemove', function(event) {
		if ($('film-description-popup') && $('film-description-popup').visible()) {		
			$('film-description-popup').setStyle({
				'top': Event.pointerY(event) + 35 + 'px',
				'left': Event.pointerX(event) - 50 + 'px'
			});
		}
	});
	
	function show_login() {
		if ($('login-box').visible()) new Effect.SlideUp('login-box', { duration: .3 });
		else new Effect.SlideDown('login-box', { duration: .3, afterFinish: function() { $('login-name').focus(); } });
		
		return false;
	}
		
	function copy_billing_to_shipping() {
		document.checkout_form.shipping_first_name.value = document.checkout_form.billing_first_name.value;
		document.checkout_form.shipping_last_name.value = document.checkout_form.billing_last_name.value;
		document.checkout_form.shipping_address_one.value = document.checkout_form.billing_address_one.value;
		document.checkout_form.shipping_address_two.value = document.checkout_form.billing_address_two.value;
		document.checkout_form.shipping_city.value = document.checkout_form.billing_city.value;
		document.checkout_form.shipping_state.value = document.checkout_form.billing_state.value;
		document.checkout_form.shipping_zip.value = document.checkout_form.billing_zip.value;
		document.checkout_form.shipping_phone.value = document.checkout_form.billing_phone.value;
		document.checkout_form.shipping_email.value = document.checkout_form.billing_email.value;
		document.checkout_form.shipping_company.value = document.checkout_form.billing_company.value;
	}
