

// VISOR DE FOTOS
function readyVisorFotos(){
	$("a[rel^='prettyPhoto']").prettyPhoto({theme:'dark_rounded',default_width:1024,show_title: false});
}


function gup( name ){
	var regexS = "[\\?&]"+name+"=([^&#]*)";
	var regex = new RegExp ( regexS );
	var tmpURL = window.location.href;
	var results = regex.exec( tmpURL );
	if( results == null )
		return"";
	else
		return results[1];
}
