$(document).ready(function() 
{
	jQuery.jFastMenu = function(id){
		$(id + ' ul li').hover(function(){
			$(this).find('ul:first').animate({height:'show'}, 'fast');
		},
		function(){
			$(this).find('ul:first').animate({height:'hide', opacity:'hide'}, 'slow');
		});
	};
	
	$('.contact-form .button input').mouseleave(function() {
		$(this).attr('src', 'images/btn-submit.png');
	});
	$('.contact-form .button input').mouseenter(function() {
		$(this).attr('src', 'images/btn-submit_roll.png');
	});
	
	$(".hprev").addClass("disabled");
	$(".hscroller").jCarouselLite({
		btnNext: ".hnext",
		btnPrev: ".hprev",
		visible: 4,
		speed: 1000,
		circular: false,
		beforeStart: function(a) {
			$(".hprev").removeClass("disabled");
		}
	});
	
	$('#slideshow').slideshow({
		timeout: 7000
	});
});
