/*
	Scripts for My Aroma Shop
*/


$(document).ready(function(){

	// Top Nav Drop Down
	$('ul.mainNav li').hover(function(){
		$(this).addClass('hover');
		$(this).find('ul.sub').show();
	}, function() {
		$(this).removeClass('hover');
		$(this).find('ul.sub').hide();	
	});

		
	if($('#fpRotator').length > 0){
		$('#fpRotator').jshowoff();
	}

});
