$(document).ready(function () {

	$('a[rel]').click(function () {

		$('#over, #over_frame').remove();

		$('body').append('<div id="over"></div><div id="over_frame"></div>');

		$('#over').css({
			'position' : 'absolute',
			'top' : '0',
			'left': '0',
			'height' : $('div.Main').height(),
			'width':$('body').width(),
			'background-color':'black',
			'background-repeat': 'repeat',
			'opacity':'0.7',
			'display':'none',
			'z-index':100
		});

		$('#over_frame').css({
			'position' : 'absolute',
			'top' : $(this).offset().top - 460,
			'left' : $('body').width() / 2 - 240,
			'height' : 360,
			'width': 480,
			'display':'none',
			'overflow':'hidden',
			'z-index':102
		});

		$('embed, object, select').css({ 'visibility' : 'hidden' });
		$('#over').fadeIn();

		$('#over_frame').append('<p style="margin-left: 330px; margin-bottom: 0px;"><a style="padding-bottom:0px;color:white;font-weight:bold;cursor:pointer;" onclick="$(\'#over, #over_frame\').fadeOut();"><img src="http://www.BoardZona.com/imagenes/close2.gif" /> Cerrar</a></p><iframe scrolling="no" width="400" height="100%" src="'+$(this).attr('rel')+'" frameborder="0">Si ves este mensaje, significa que tu navegador no soporta esta característica o está deshabilitada. Pero puedes acceder a esta información aquí <a href="http://www.htmlquick.com/reference/tags/a.html">tag HTML a</a>.</iframe>');
		$('#over_frame').show();
	});

	return false;
});
