jQuery(document).ready(function($) {

$("#mainmenu li")
	.mouseover(function(){
		$(this).addClass('hover')
		})
	.mouseout(function(){
		$(this).removeClass('hover')
		})
	;

$("#features").tabs({fx: {opacity: "toggle"}}).tabs("rotate",7000,false);
});
