$(document).ready(function() {
		
		$('.dropdown').each(function () {
			$(this).parent().eq(0).hoverIntent({
				timeout: 100,
				over: function () {
					var current = $('.dropdown:eq(0)', this);
					current.slideDown(500);
				},
				out: function () {
					var current = $('.dropdown:eq(0)', this);
					current.slideUp(500);
				}
			});
		});
		
		/*****
		 *
		 *	Enabling image slider on home page.
		 *
		 ****/
		
		$(".carousel").easySlider({
			prevId: 'prevBtn',
			nextId: 'nextBtn',
			controlsBefore:	'<p id="controls">',
			controlsAfter:	'</p>',
			auto: true, 
			continuous: true,
			pause: 5000
		});
		
		
			

});

























