$(document).ready(function(index){
    $(".blogsitesummary li").each(function(){
        var txt = $(this).text().substr(0,40) + "...";
        
        $(this).find("a").html(txt);
        $(this).find(".author").remove();
        $(this).find(".date").remove();
    });

    $(".shop-product-small-backup").each(function(){
        var txt = $(this).find("h4").html().substr(0,50)+"...";
        $(this).find("h4").html(txt);
    });
    //var txt = $(".shop-product-small-backup").find("h4").html().substr(0,40)+"...";
    //$(".shop-product-small-backup").find("h4").html(txt);
});

try
  {
 if (document.cookie && document.cookie.indexOf("CartID") < 1) {
document.getElementById('catCartSummary').style.display = "none";
}
  }
catch(err)
  {
  //Handle errors here
  }


function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = ""
}

var loggedin = "{module_whosloggedin}";
if  (loggedin == 1)
document.getElementById('loggedin').style.display = "block";

