/*
 * 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 () {
	$('a.basic').click(function (e) {
		e.preventDefault();
		var src="/Show.aspx";
		$.modal('<iframe src="' + src + '" height="430" width="600" style="border:0" frameborder=0 />', {
	containerCss:{
		backgroundColor:"#fff",
		//borderColor:"#0063dc",
		height:430,
		padding:0,
		width:600
	},
	overlayClose:true
});
		//$('#basic-modal-content').load("Show.aspx");
});
	//
	$('a.jobDialog').click(function (e) {
		e.preventDefault();
				var src="/JobShow.aspx";
		$.modal('<iframe src="' + src + '" height="430" width="800" style="border:0" frameborder=0 />',
		{containerCss:{
		backgroundColor:"#fff",
		//borderColor:"#0063dc",
		height:430,
		padding:0,
		width:800
	},
	overlayClose:true}

		);
//		$('#job-content').modal({
//			overlayId:'job-overlay',
//			containerId:'job-container'
//		 });
//		$('#job-content').load("JobShow.aspx"); 
	});
});
