jQuery(document).ready(function() {
	jQuery("#slideshow").css("overflow", "hidden");
	
	jQuery("ul#slides").cycle({
		fx: 'fade',
		pause: 1,
		prev: '#prev',
		next: '#next',
		speed: 3700
	});
	
	jQuery("#slideshow").hover(function() {
    	jQuery("ul#slidenav").fadeIn();
  	},
  		function() {
    	jQuery("ul#slidenav").fadeOut();
  	});
	
});


objImage = new Image();

function download(img){
objImage.src=img;
}

