$(document).ready(function(){

$('.menu-categories-list ul li a').hover(function() {
  $(this).addClass('selected');
}, function() {
  $(this).removeClass('selected');
});

$('.menu-manufacturers ul li a').hover(function() {
  $(this).addClass('selected');
}, function() {
  $(this).removeClass('selected');
});

$(".menu-manufacturers .title-bar").html("<img src=skin1/images/ey-brand.jpg border=0 alt='Shop By Brand'>");

$(".menu-manufacturers ul li:contains('Other')").remove();
$(".menu-manufacturers ul li:last").addClass("last");

var myURL = location.href;

$('a.zoom').click(function()
{
    $(this).attr("href",myURL+"#zoom");
});

$('a.friend').click(function()
{
    $(this).attr("href",myURL+"#friend");
    //location.href = "";
    //location.href = location.href + "#friend";
    //return false;
});

$("#center-main h1:eq(0):contains('Your shopping cart')").remove();

$(".content ul li:contains('Pre Orders')").remove();
$(".content ul li:contains('Arrivals')").remove();
$(".content ul li:contains('Stock')").remove();

});
