function bookmarksite(title, url) {
    if (window.sidebar) // firefox 
    //window.sidebar.addPanel(title, url, ""); Dont use until it's fixed 
        alert('Firefox users. Please press CTRL+D to Bookmark this page');
    else if (window.opera && window.print) { // opera 
        //var elem = document.createElement('a');
        //elem.setAttribute('href', url);
        //elem.setAttribute('title', title);
        //elem.setAttribute('rel', 'sidebar');
    //elem.click();
    alert('Opera users. Please press CTRL+D to Bookmark this page');
    }
    else if (document.all)// ie
        window.external.AddFavorite(location.href, document.title);
} 
$(function(){
		$('body').addClass("js")

		$(".share-links a.switcher").click(function () {
		    $('#switcher').removeClass("hide");
		    return false;
		});

		$("#switcher .close").click(function () {
		    $('#switcher').addClass("hide");
		});

});
$(document).ready(function() {
	$(".league-table table").removeAttr("style");
	$(".league-table table tr").removeAttr("style");
	$(".league-table table tr:first").addClass("first-row");
	$(".league-table table td").removeAttr("style");
	$(".league-table table td a").removeAttr("style");
	$(".league-table table td a").attr('target', '_blank');
	$(".league-table table td:last-child").hide();
	
	
});

