$(document).ready(function(){
   $("#mainMenu > li").hover(
		function () {
			$(this).children("ul").toggle();
		}, 
		function () {
			$(this).children("ul").toggle();
		}
	);
   $("#mainMenu > li:not('.current')").hover(
		function () {
			$(this).children("a").addClass("active");
		}, 
		function () {
			$(this).children("a").removeAttr("class");
		}
	);
   $(".white").hover(
		function () {
			$(this).addClass("rotated");
		}, 
		function () {
			$(this).removeClass("rotated");
		}
	);
});