/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.js 254 2010-07-23 05:14:44Z emartin24 $
 */

jQuery(function ($) {
	// Load dialog on page load
	// Display an external page using an iframe
var src = "http://www.peche.pf/squelettes-dist/page_choix.html";
$.modal('<iframe src="' + src + '" height="768" width="1200" style="border:0">', {
	closeHTML:"",
	containerCss:{
		backgroundColor:"",
		borderColor:"#fff",
		height:768,
		padding:0,
		width:1200
	},
	overlayClose:true
});
	$('#basic-modal-content').modal();

});
