(function($){
	$(document).ready(function($) {
		$('#navigation li').hover(
			function() {
				$(this).find('a').eq(0).addClass('hover');
				$(this).find('ul').eq(0).show();
			},
			function() {
				$(this).find('a').eq(0).removeClass('hover');
				$(this).find('ul').eq(0).hide();
			}
		);
		if ($('.quotes-slider').length) {
			$(".quotes-slider ul").jcarousel({
				auto: 9,
				scroll: 1,
				wrap: 'both',
				animation: 1250,
				buttonNextHTML: null,
				buttonPrevHTML: null
		    });
		};
	});
})(jQuery)
