$(document).ready(function(){
	$('#topo ul li:first, .contatoDados li:first').css({'border':'none', 'background':'none'});
	$('.submenu').each(function(){
		$(this).parent().hover(function(){
			$(this).find('.submenu:eq(0)').show();
		}, function(){
			$(this).find('.submenu:eq(0)').hide();
		});
	});
	$('#blocoCompre select, .servicosUrbanas select, #buscaIntermunicipal select').selectStyle();
	$('.campoData').prev().addClass('selData').prev().addClass('divData');
	$('form.formCidades').submit(function(){
		document.location.href = '/servicos/intermunicipal-e-interestadual/'+$('select[name="origem"]').val()+'/'+$('select[name="destino"]').val();
		return false;
	});
});
