// JavaScript Document
$(document).ready(function() {
	if(document.all) {
		$('#Menu li.HasSubMenu').hover(function() {
			$(this).addClass('over');
			return false;
		},
		function() {
			$(this).removeClass('over');
		});
	}
});

/*
*  BEGIN FUNCTION TO TOGGLE DISPLAY
*/

function change(id){
     ID = document.getElementById(id);
    
     if(ID.style.display == "")
          ID.style.display = "none";
     else
          ID.style.display = "";
      }

function show(id){
     ID = document.getElementById(id);
        ID.style.display = "block";
	      }

function hide(id){
     ID = document.getElementById(id);
          ID.style.display = "none";
    
      }

/*
*  END FUNCTION TO TOGGLE DISPLAY
*/

function OnChange(dropdown)
{
    var myindex  = dropdown.selectedIndex;
    var SelValue = dropdown.options[myindex].value;
    var baseURL  = "http://www.ubiquityrecords.com/shop/";
    top.location.href = baseURL;
    
    return true;
}

