$(document).ready(function(){
	$('.fechar-veiculo').click(function ( e ) {
		e.preventDefault();
		$('.div-veiculo').hide(1000);
		
		$("#overlay-j").remove();
	});
	$("#lista-veiculos a").click(function( e ){
		e.preventDefault();
		overlay_j( '0.7', $('body').height(), '#3F2500', '120' );	
		
		var id = $(this).attr('id');
		$("#div-"+id).show(1000);
	});
	$('#cadastre-se fieldset input').click(function(){
		if ( $(this).val() == 'Digite seu e-mail' )
			$(this).val('');
	});
});
function overlay_j( opac, body_height, color, zindex )
{
	var lay = document.createElement('div');
	$( lay ).attr( {id : 'overlay-j'} );
	$( lay ).css( {background: color} );
	$( lay ).css( {'z-index': zindex} );
	$('body').after( lay );
	
	$( lay ).css({height: body_height+'px', opacity: opac});
}