jQuery(document).ready(function($) {
    // $() will work as an alias for jQuery() inside of this function
    
    
    
    
$(document).ready(function() {

	$('#nav li:last-child').addClass('last');
	
	$("#homefeature").css("overflow", "hidden");
	
	$("#homefeature1").css("overflow", "hidden");

	$("ul#slider").cycle({
		fx: 'scrollRight',
		timeout: 10000,
		speed: 2000,
		prev: '#prev',
		next: '#next',
		pause: 1
	});
	
	$("ul#slider1").cycle({
		fx: 'scrollRight',
		timeout: 10000,
		speed: 2000,
		prev: '#prev1',
		next: '#next1',
		pause: 1
	});
	
	$("#homefeature").hover(function() {
		$("ul#slidernav").fadeIn();
	},
		function() {
		$("ul#slidernav").fadeOut();
	});

	$("#homefeature1").hover(function() {
		$("ul#slidernav1").fadeIn();
	},
		function() {
		$("ul#slidernav1").fadeOut();
	});


});





});


