

(function($) {

    $(document).ready(function() {
    
    	//Active class on Navigation
    	$('#navigation li').mouseover(function(){
			$(this).parents('li').children('a').addClass('active');
		});
		$('#navigation li').mouseout(function(){
			$(this).parents('li').children('a').removeClass('active');
		});
		
		//Rotating Slideshow
		$('#banner').innerfade({
			speed: 1000,
			timeout: 5000,
			type: 'sequence',
			containerheight: '240px'
		});

    });

})(jQuery);
