$(document).ready(function(){	
	Shadowbox.init();
	
	if($('#request-ok'))
		$('#request-ok').click();
});

/* Vinculo mailto */
function contactar(){
 correo = 'info';
 dominio ='justovazquez';
 extension = 'com';
 asunto = 'Consulta a JUSTO VAZQUEZ'
 location.href = "mailto:" + correo + "@" + dominio + "." + extension + "?" + "subject" + "=" + asunto;
}

function requestOK(url){
	// alert(url);
	$('#enlace-request').attr('href',url);	
	Shadowbox.close();
	Shadowbox.init();
	setTimeout ('showRequest()',1000);
}

function showRequest(){
	$('#enlace-request').click();
}