jQuery(document).ready(function(){
	jQuery('#maps .googleMap').css({
		width: 718,
		height: 372
	});
	jQuery('#content #filtros select').bind('change', function(){
		if (jQuery(this).attr('id') == "cidade")
			window.location = URL_BASE + '/oficinas/?cidade=' + jQuery(this).val();
		else if (jQuery(this).attr('id') == "ano")
			window.location = URL_BASE + '/oficinas/?ano=' + jQuery(this).val();
		else if (jQuery(this).attr('id') == "status")
			window.location = URL_BASE + '/oficinas/?status=' + jQuery(this).val();
	});
});
