/*search*/
jQuery(document).ready(function() {
	$('#top-s').val('Procura por palavras-chaves').focus(function(){ $(this).val(''); }).blur(function(){ if($(this).val() == '') $(this).val('Procura por palavras-chaves'); });
	$('#top-s-footer').val('Procura por palavras-chaves').focus(function(){ $(this).val(''); }).blur(function(){ if($(this).val() == '') $(this).val('Procura por palavras-chaves'); });
});
/*menu drop down*/
$(document).ready(function() {
if ($.browser.msie) $('select.wide')
		.bind('mouseover', function() { $(this).addClass('expand').removeClass('clicked'); })
		.bind('click', function() { $(this).toggleClass('clicked'); })
		.bind('mouseout', function() { if (!$(this).hasClass('clicked')) { $(this).removeClass('expand'); }})
		.bind('change blur', function() { $(this).removeClass('expand clicked'); });
});
