//suppose to be a better code that hide the select list (currency selection) when menu is open. 
//In IE6, select tags are always on the top of every elements
/*$(document).ready(function () {
if(jQuery.browser.version == "6.0"){
			    $("#about").hover(function () {
			        $("#currencySelected").css({'visibility' : 'hidden'});
			      }, function () {
			        var cssObj = {
			        		'visibility' : 'visible'
			        }
			        $("#currencySelected").css(cssObj);
			      });
		}
}*/				

