function show_menu(pos) {
	$('#menu').css('background-position','0px '+(5+(pos*-58))+'px');	
	
}

function hide_menu() {
	$('#menu').css('background-position','0px 0px');	
}
$(document).ready(function() {
    $('#slides').cycle({ 
				fx:    'fade', 
				speed:  3000,
				timeout: 1000,
				delay:-2000
			 });
	/* Replaced by flash movie 
	$('#headerimages').cycle({ 
				fx:    'fade', 
				speed:  3000,
				timeout: 1500,
				delay:-2000
			 });
	 */
	 
	 /* Flash code to check for images and replace them with a flash movie */
	 var imagesToFlash = new Array();
	 $('#headerimages img').each(function() {
		imagesToFlash.push($(this).attr('src'));
	 });
	 
	 if (imagesToFlash.length > 1) {
		$('#headerimages img').hide();
		 
		var vars = { images: imagesToFlash.join("+")};
		$('#headerimages').flash(
			{ src: 'swf/Alinda.swf', width: '501', height: '96', wmode: 'transparent', flashvars: vars },
			{ version: 9 }
		);
	 }
});
