$(document).ready (function() {
$('#nav li .opac').css({opacity: 0}, 0);
// main and sub nav hover function
	
	$('#nav li').hoverIntent(function(){
//alert($(this).text());
		$(this).children('.opac').animate({ opacity: 0.33 }, 200);
		$(this).children('ul.snl').show();
		}, 

function() {
	$(this).children('.opac').animate({ opacity: 0 }, 200);
	$('ul.snl', this).hide();
});



}); 
