$(document).ready(function () {
    // pagetools and quicklink functions

    //taf link
    var pageURL = window.location;
    var fullURL = window.location.toString();
    $('#taflink').attr('href', 'mailto:?subject=Israel on Campus Coalition - Email Link&body=Hi, I recommend that you check out this page on The Israel on Campus Coalition Web site: ' + pageURL + ' Thanks.');
    //mobile settings
    var mobileUrl = fullURL.replace('web.', 'mobile.');
    mobileUrl = mobileUrl.replace('www.', 'mobile.');
    mobileUrl = mobileUrl.replace('devtest.', 'mobile.devtest.');
    mobileUrl = mobileUrl.replace('dev.', 'mobile.dev.');
    var fullwebUrl = fullURL.replace('mobile.dev', 'dev');
    fullwebUrl = fullwebUrl.replace('mobile.', 'web.');
    //switch mobile link
    if (window.location.href.indexOf("mobile.") != -1) {
        //alert("This is the mobile version");
        $('#maincss').attr('href', '/styles/mobile/main.css')
        $('#menucss').attr('href', '/styles/mobile/menu.css')
        $('#mobileswitch').attr("href", fullwebUrl);
        $('#mobileswitch').html('Switch to Full Web View');
    }
    else if (window.location.href.indexOf("/action/edit") != -1) {
        $('#pagetools').hide();
	$('#homeframeedgetop').css('top','20px');
    }
    else {
        $('#maincss').attr('href', '/styles/main.css')
        $('#menucss').attr('href', '/styles/menu.css')
        $('#mobileswitch').attr("href", mobileUrl);
        $('#mobileswitch').html('Mobile View');
    }

});
