/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2009 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.js 212 2009-09-03 05:33:44Z emartin24 $
 *
 */

$(document).ready(function () {
	$('#basic-modal input.basic, #basic-modal a.basic').click(function (e) {
		e.preventDefault();		
		$.modal('<iframe src="' + targetPage + '" height="510" width="610" style="border:0" frameborder="0" scrolling="no">', {});
	});
	$('#basic-modal input.friendmsg, #basic-modal a.friendmsg').click(function (e) {
		e.preventDefault();		
		$.modal('<iframe src="' + targetPageMessage + '" height="510" width="610" style="border:0" frameborder="0" scrolling="no">', {});
	});		
	$('#basic-modal input.notifiche, #basic-modal a.notifiche').click(function (e) {
		e.preventDefault();		
		$.modal('<iframe src="' + targetPageNotifiche + '" height="320" width="600" style="border:0" frameborder="0" scrolling="no">', {});
	});	
});
