$(document).ready(function() {
	
	//menu dropdown
	jQuery.each($('#nav li'),function(i,val){
		$(this).bind('mouseenter mouseover',function(){
			$(this).addClass('sfhover');
		}).bind('mouseleave mouseout',function(){
			$(this).removeClass('sfhover');
		});
	});
	
	//Se o lighbox foi carregado, inicia-o	
	if (lbcarregado){
		$('a.lb').lightBox()
	}
	
});
