$(document).ready(function(){

//slideshow
$(".slideshow").css('background-image', 'none');
//$(".slideshow img").hide();
//$(".slideshow img:nth-child(2)").hide();
$(".slideshow img:nth-child(1)").show();
$(".slideshow img:nth-child(2)").show();
$(".slideshow img:nth-child(3)").hide();													   
$(".slideshow img:nth-child(4)").hide();
$(".slideshow img:nth-child(5)").hide();
$(window).load(function() {
   	/*$(".slideshow img:nth-child(1)").fadeIn(2000, function(){
	$(".slideshow img:nth-child(2)").delay(5000).fadeIn(2000, function(){*/
	$(".slideshow img:nth-child(3)").delay(1000).fadeIn(1000, function(){													   
	$(".slideshow img:nth-child(4)").delay(500).fadeIn(1000, function(){
	$(".slideshow img:nth-child(5)").delay(500).fadeIn(1000, function(){												   
	});
	});
	});
	//});
	//});
});

//submit
$("input.submit").hover(
	function () {
		$(this).attr('src', 'images/submit_on.gif');
	},
	function () {
		$(this).attr('src', 'images/submit.gif');
	}
);

});
