// -----------------------------------------------------------------------------------
//
//	Masterbox Gallery v1.3
//	by Ricardo Gerald Garcia Rodriguez - MasterOjitos - http://www.masterojtos.com
//	Last Modification: 12/03/2010
//
// -----------------------------------------------------------------------------------

var Masterbox_array = Array();
var Masterbox_pos = "";
var Masterbox_click = "";

$(window).load(function(){
	$(document.body).append('<div id="Masterbox_container"><div id="Masterbox_body"></div><div id="Masterbox_foot"><div id="Masterbox_logo"><img src="images/logo2.png" width="102" height="60"/></div><div id="Masterbox_close"><img src="images/closewindow.jpg" alt="Close" width="148" height="35" /></div><div id="Masterbox_title"></div></div></div>');
	$('a').each(function(){
		if($(this).attr('rel') == "Masterbox"){
			$(this).click(function(){
				Masterbox_params = ($(this).attr('title') == "") ? $(this).attr('rev') : $(this).attr('rev') + ",titulo=" + $(this).attr('title');
				Masterbox($(this).attr('href'), Masterbox_params);
				return false;
			});
		}
	});

	$('#Masterbox_close').click(function(){
		$("#Masterbox_container").fadeOut();
		document.documentElement.style.overflow="";
	});
});

function Masterbox(Masterbox_url, Masterbox_params){
	document.documentElement.style.overflow="hidden";
	if(Masterbox_url == "") return false;
	var Masterbox_titulo = "";
	if(Masterbox_params != null){
		params = Masterbox_params.split(",");
		for(i=0; i<params.length; i++){
			attr = params[i].split("=");
			for(a in vars = ["titulo"]) if(attr[0] == vars[a]) eval("Masterbox_" + attr[0] + " = '" + attr[1] + "';");
		}
	}
	$("#Masterbox_title").text(Masterbox_titulo);
	$("#Masterbox_container").show();
	$("#Masterbox_body").html('<iframe name="Masterbox_iframe" id="Masterbox_iframe" style="width:' + $(window).width() + 'px; height:' + ($(window).height() - 80) + 'px;" frameborder="0" src="' + Masterbox_url + '"></iframe>').fadeIn(500);
}
