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

    $("#SlideDown").hover(
	  function () {
        $("#SlideDown").css({ "border": "1px solid #CCCCCC", "border-bottom": "none" });
        $("#CurrencyList").css({ "border": "1px solid #CCCCCC", "border-top": "none" });
		$("#CurrencyList").show();
	  },
	  function () {
		$("#CurrencyList").hide();
		$("#SlideDown").css("border","1px solid #FFF");
	  }
	 );
});
