jQuery(document).ready(function () {
	if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
		var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
	  
		if ( ieversion < 7 )
			jQuery.facebox("<div style='font-size:16px; text-align:center;width:750px;height:350px;line-height:350px;font-weight:bold;'>Your browser is not supported by this website.  Please <a href='http://www.microsoft.com/windows/downloads/ie/getitnow.mspx' target='_blank'><strong>upgrade</strong></a> to Internet Explorer 7 or above.</div>");	
	}
});
