$(document).ready(function() { 

	// Get IE Version

	function getInternetExplorerVersion(){
	   var rv = -1;
	   if (navigator.appName == 'Microsoft Internet Explorer') {
	      var ua = navigator.userAgent;
	      var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
	      if (re.exec(ua) != null)
	         rv = parseFloat( RegExp.$1 );
	   }
	   return rv;
	}
	
	$('a.loginModal').click(function() { 

	version = getInternetExplorerVersion();
	
	if (version > 5) { 
		$.fancybox({
			href: "login-modal.html",
			hideOnOverlayClick: false, 
			titleShow: false, 
			padding: 0, 
			scrolling: 'no', 
			centerOnScroll: true,
			type: 'iframe',
			height: 544,
			width: 980
		}); 
	  
	 } else { 
	 	$.fancybox({
			href: "login-modal.html",
			hideOnOverlayClick: false, 
			titleShow: false, 
			padding: 0, 
			scrolling: 'no', 
			centerOnScroll: true,
			type: 'inline'
		}); 
	}

	return false;

	});
});
