// Acivate Menuhighlight

function imactive(myid) {
	myelement = document.getElementById(myid);
	myelement.id="mainmenuactive";
}

function imsubactive(myid) {
	myelement = document.getElementById(myid);
	myelement.id="submenuactive";
}

function imsubsubactive(myid) {
	myelement = document.getElementById(myid);
	myelement.id="subsubmenuactive";
}



/* Hover effect for menu*/
$(document).ready(function() {
	$("li.rounded").mouseenter(function() {
    $(this).addClass('hover');
  	});
  	$("li.rounded").mouseleave(function(){
    $(this).removeClass('hover');
  	});
});	


	
	
/* Rounded Corners for all browsers */
$(document).ready(function(){ 
  settings = {
          tl: { radius: 8 },
          tr: { radius: 8 },
          bl: { radius: 0 },
          br: { radius: 0 },
          autoPad: true,
          validTags: ["li"]
      }
  $('.rounded').corner(settings);
  });
  
  
