
$(document).ready(function() {
ref = "";
$(".brandLists:not(:first)").hide();
$(".listLinks").click(function () {
if (! $(this).is(".selected")) {
$(this).addClass("selected");
ref = $(this);
}
});
var ref2 = $("#worldLink a");
ref2.addClass("selected2");
$(".discoverLinks").mouseover(function () {
if (! $(this).is(".selected2")) {
$(this).addClass("rollover");
}
}).mouseout(function () {
$(this).removeClass("rollover");
}).click(function () {
if (! $(this).is(".selected2")) {
$(this).addClass("selected2");
ref2.removeClass("selected2");
ref2 = $(this);
}
});

});
function show(elementId) {
if($("#"+elementId+":visible").length < 1) {
$(".holidayLists:visible").slideUp("normal", function() {$("#"+elementId).slideDown("normal");});
}
}
function showBrand(elementId) {
$(".brandLists:visible").hide();
if($("#"+elementId+":visible").length < 1) {
$("#"+elementId).show();
}
}
