$(document).ready(function(){

$("#Table41").removeAttr("style");
$("#ShopLayOut_Basket_TD").removeAttr("style");
$("#ContentContainer_TBL").css({'width':'532px'});
var nav = $(".SubCategory1_Productmenu a");
//alert(nav.length);
$(nav).each(
    function( intIndex ){
        var txt = $(this).text();
        $(this).text(txt.replace("-",""));        
    }
);

//Knapper på Orderstep1
var isOnOrder1 = $("#ShopLayOut_Content_TD .SubmitButton_Orderstep1");
if (isOnOrder1.length == 2)
{
    $(isOnOrder1[0]).addClass("hentButton");
    $(isOnOrder1[1]).addClass("videreButton");
}
if (isOnOrder1.length == 1)
{
    $(isOnOrder1[0]).addClass("videreButton");
}

//is frontpage
var fp = $(".FrontPage_TD");
if(fp.length > 0)
{
    $("#ContentContainer_DIV").css({'margin-top':'11px'});    
}

});