var browser		= navigator.appName
var ver			= navigator.appVersion
var thestart	= parseFloat(ver.indexOf("MSIE"))+1 //This finds the start of the MS version string.
var brow_ver	= parseFloat(ver.substring(thestart+4,thestart+7)) //This cuts out the bit of string we need.

if ((browser=="Microsoft Internet Explorer") && (brow_ver < 7)) //By default the min. IE ver is set to 6. Change as desired.
{
window.location.href="http://www.einsteinzmusic.com.au/index-ie6.html"; //URL to redirect to.
}

$(document).ready(function() {
	
	//$('ul#menu-main-menu > li > a').click(function(event) { event.preventDefault(); });	

	$("#megaMenu ul.megaMenu > li:first").css("margin-left", "0");
	//$("#megaMenu ul.megaMenu > li").click(function(){
	 //window.location=$(this).find("a").attr("href"); return false;
	//});
});


