$(document).ready(function () {

		$('#nav li').hover(
				function () {
					//show its submenu
					$('ul', this).fadeIn(100);
		 
				},
				function () {
					//hide its submenu
					$('ul', this).fadeOut(100);        
				}
			);




$(".rollControl").click(function (){
$(this).toggleClass("rollActiv").next(".rollTarget").slideToggle();
return false;
}); 
  



//END DOMReady
});



