$(function(){
	//This block of code grabs content from between the #print_zone div and prints it in the model
	$('.content_copy img[src*="/1293726166interactivemap.jpg"]').replaceWith('<style type=\"text/css\">#map {	position:relative;	height:545px;	width:498px;	background-image: url(interactive_map/bg_map.png);	background-position: 00;	background-color: transparent;}#map a {	display:block;	cursor: pointer;}#map div {	position:absolute;}#map .communication_manager {	width:165px;	height:140px;}#map .event_manager {	width:157px;	height:168px;	}#map .employee_health_portal {	width:154px;	height:168px;}#map .incentive_rewards_manager {	width:168px;	height:139px;}#map .analytics_reports_manager {	width:154px;	height:168px;}#map .eligiblity_manager {	width:151px;	height:167px;}#map div.communication_manager {	top:0px;	left:159px;}#map div.event_manager {	top:92px;	left:324px;}#map div.employee_health_portal {	top:271px;	left:324px;}#map div.incentive_rewards_manager {	top:388px;	left:157px;}#map div.analytics_reports_manager {	top:271px;	left:5px;}#map div.eligiblity_manager {	top:93px;	left:0px;}</style><div id=\"map\">	<div class=\"communication_manager\">		<a href=\"index.php?content=wellness_program_communications_manager\" class=\"communication_manager\"></a>	</div>	<div class=\"event_manager\">		<a href=\"index.php?content=wellness_analytics\" class=\"event_manager\"></a>	</div>	<div class=\"employee_health_portal\">		<a href=\"index.php?content=wellness_program_employee_health_portal\" class=\"employee_health_portal\"></a>	</div>	<div class=\"incentive_rewards_manager\">		<a href=\"index.php?content=wellness_program_event_management\" class=\"incentive_rewards_manager\"></a>	</div>	<div class=\"analytics_reports_manager\">		<a href=\"index.php?content=wellness_analytics\" class=\"analytics_reports_manager\"></a>	</div>	<div class=\"eligiblity_manager\">		<a href=\"index.php?content=wellness_program_incentive_manager\" class=\"eligiblity_manager\"></a>	</div></div>');
	

	//Put in the DIV id you want to calculate the size of
	calculateWindow('#wrapper');
});

function calculateWindow(id) {
	
		//Get the screen width
		var documentWidth = $(document).width();
              
		//Set the div size
		$(id).css('width',  documentWidth);
}
	


