
$(document).ready(function() {


/* Banner for index page ****************************************************************/
	$('button.prev').hover(function (){
		$(this).attr({'class':'prev prev_hover'}).css({'cursor':'pointer'});;
	},function(){
		$(this).attr({'class':'prev'});
	});

	$('button.next').hover(function (){
		$(this).attr({'class':'next next_hover'}).css({'cursor':'pointer'});
	},function(){
		$(this).attr({'class':'next'});
	});


	$(".imagearea").jCarouselLite({
	    btnNext: "div#screen .next",
	    btnPrev: "div#screen .prev",
	    visible: 1,
		auto: 3000,
	    speed: 300,
		easing: ""
	});
	
	
}); // End jQuery

