$j = jQuery.noConflict();
$j(document).ready(function() {
    $j('ul.subMenu').hide();
    $j('ul#topMenu li a').mouseover(function() {
        $j(this).parent().find('ul.subMenu').show();
        $j(this).parent().find('ul.subMenu li').slideDown('slow');
        $j(this).parent().find('ul.subMenu').hover(function() {}, function() {
			$j(this).parent().find('ul.subMenu').hide();
            $j(this).parent().find('ul.subMenu li').slideUp('slow');
        });
    });
    
    $j('.labelDropmenu').click(function() {
	$j(this).next().slideToggle('medium');
	$j(this).parent().hover(function() {
	    $j(this).children('ul.dropMenu').slideUp('medium');
	});
        
	$j(this).next().children('li').click(function() {        
	    target = $j(this).parent().prev();
	    target.children('span.opcaoDropmenu').html($j(this).html());
	    target.children('input').val($j(this).children('input').val());
	    $j(this).parent().slideUp('medium');
	});
    });
    $j('.dropMenu li').lightBox({exibeGaleria: false});
});
