var addr_ar = document.location.toString().split('/');

Cufon.replace('#top-menu ul li a', { fontFamily: 'Myriad Pro Bold', hover: true });
Cufon.replace('#banner-welcome .collection, #banner-welcome .welcome .head, #main .catheader h3', { fontFamily: 'Palatino Linotype Regular', hover: true });



$(document).ready(function () {
							
$("#top-menu li a").each(function(){
    if($(this).attr("href") == addr_ar[addr_ar.length - 1]){
        $(this).addClass("current");
    }
});			

    $('a[href=#scrollme]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });

$("#main .prods ul li:nth-child(2n)").addClass("remove");
$("#top-menu ul li:last-child a").addClass("last");
$(".prods ul li:nth-child(4n)").addClass("remove");


});


