$(document).ready(function() {
					
	//jQuery for modals
	$(".modal").hide();
	
	// Display an external page using an iframe

	$(".hiLink").click(function(){
								
	//Identify the current tab
	var tabNumber = 1;
	var i=1;
	for (i=1;i<6;i++) 
	{
	  if ($("#tab" + i).is(".mainMenuCurrent")) {
	  tabNumber = i;
	  }
	}
	
	tabNumber = String(tabNumber);
	var src = 'http://www.ybshomeinsurance.co.uk/#' + encodeURIComponent( 'http://' + document.location.hostname + ':' + document.location.port + document.location.pathname + '?' + tabNumber );

		$.modal('<iframe allowTransparency="true" src="' + src + '" height="605" width="985" scrolling="no" frameborder="0" style="border:0">', {
			position: [36,0],
			containerCss:{
				height:605,
				padding:0,
				margin:0,
				width:985
			}
			/*,
			overlayClose:true
			*/
		});
		
		return false;
	});
	
});