$(document).ready(init);


function init(){
	$("#menu>li").each(function(){
		$(this).mouseover(function(){
			$(this).addClass("show");
		});
		$(this).mouseout(function(){
			$(this).removeClass("show");
		});
	});
	
	
	$('body').supersleight();
}


function openPopup(url){
	window.open("popups/"+url, "rochas", "menubar=no, status=no, scrollbars=no, menubar=no, width=497, height=460");
}