$(function(){
	$('.jsGaleria').click(function(){
		var id = this.id.split('_');
		id = id[1];
		window.open($("#raiz").attr('content') + 'detalheGaleria?area=1&codigo='+id, '', 'scrollbars=no, width=720, height=586');
		window.location.href = $(this).attr('href');
		return false;
	});
	
//	$('.jsDetalheCarro').click(function(){
//		var id = this.id.split('_');
//		id = id[1];
//		window.open($("#raiz").attr('content') + 'detalheGaleria?area=2', '', 'scrollbars=no, width=720, height=586');
//		window.location.href = $(this).attr('href');
//		return false;
//	});
	
	$('.jsGaleriaDetalheVeiculo').click(function(){
		var id = this.id.split('_');
		id = id[1];
		window.open($("#raiz").attr('content') + 'detalheGaleria?area=2&codigo='+id, '', 'scrollbars=no, width=720, height=586');
		window.location.href = $(this).attr('href');
		return false;
	});
});
