$(document).ready(function() {

	var actualURL = location.href.substr((location.href.indexOf(':') + 3));
	
	var wrongURL = "www.fatface.com/icat/menswear/trousers-jeans%20shorts/icat/menstrousersjeansshorts/&bklist=icat,4,shop,menswear,menstrousersjeansshorts"
	
	if(actualURL==wrongURL) {
		window.location = "http://www.fatface.com/icat/menswear/trousers-jeansshorts/icat/menstrousersjeansshorts/&bklist=icat,4,shop,menswear,menstrousersjeansshorts"
	};
						   

	if (document.all&&document.getElementById) {
		$("#megamenu li").hover(
			function () {
				$(this).addClass("hover").children(".dropdown").show();
			}, 
			function () {
				$(this).removeClass("hover").children(".dropdown").hide();;
		}
		);
	};

});
