$(document).ready(function() {
	
	$('.slideshow')
		.before('<div id="nav">')
		.cycle({ 
		    fx:			'scrollDown', 
		    speed:		'fast', 
		    timeout:	7000,
		    speed:		1500, 
		    pager:  	'#nav'
	});

	$("img").hover(
	 function()
	 {
	  this.src = this.src.replace("_off","_on");
	 },
	 function()
	 {
	  this.src = this.src.replace("_on","_off");
	 }
	);
	
	$('.pop_up').hover(
		function(){
			$(this).animate({ height: "169px" });
		},
		function(){
			$(this).delay(150).animate({ height: "35px" });
		}
	);
	
	$('#footer input').one("focus", function() {
	  $(this).val("");
	});
	
});
