
/*--Function for Ajax slideshow--*/
$(document).ready(function () {
    $('.dropParent').hoverIntent(
	function(){
	
		$(this).children('.drop').fadeIn(300);
		$(this).addClass('dropParentHover');
	},
	function(){
		$(this).children('.drop').fadeOut(300);
		$(this).removeClass('dropParentHover');
	}
	);	
});
