$(document).ready(function(){
						   
var Site = {
	
	$menu: $('#nav ul.menu > li'),
	
	init: function(){
		this.topNav();
		this.topSlider();
	},
	
	topNav: function(){
	    var self = this;
		self.$menu.bind('mouseenter', function(){
		    $(this)
			  .find('div')
			    .first()
			      .hide()
				    .stop(true,true)
				      .fadeIn(300);
        });
	},
	
	topSlider: function(){
		$('.slideShow').cycle({
		  fx: 'fade',
		  timeout: 5000, // Time it takes the slide to change - milliseconds - 1000 = 1second
		  speed: 1000, // Transition time from current slide to the next */
		  pause: 1 // Pause on mouse hover - 0 = no pause
        });
	}	
};

//lets roll
Site.init();

});
