// JavaScript Document


$(document).ready(
	function() {
	    $(function () {
	        $("#slides").slides({
	            preload: true,
	            play: 5000,
	            pause: 2500,
	            hoverPause: true
	        });
	    });

	    $(".navigation li").hover(function () {
	        $(this).children(".subnav").show();
	        $(this).addClass("hover");
	    }, function () {
	        $(this).children(".subnav").hide();
	        $(this).removeClass("hover");
	    });

	    $(".navigation .home").hover(function () {
	        $(this).addClass("home_hover");
	    }, function () {
	        $(this).removeClass("home_hover");
	    });
				
	});
