(function($) {
	$.ux.behavior("CultureDropdown", {
		onmouseover: function() {
			$('#CultureList').show("normal");
		},
		onmouseleave: function() {
			$('#CultureList').hide("normal");
		},
		onclick: function() {
			return false;
		}
	});
	
	$.ux.behavior("CloseCultureNotice", {
		initialize: function() {
			this.element.show();
		},
		onclick: function() {
			$("#CultureNotice").slideUp("normal");
			return false;
		}
	});
	
	$(document).ready(function(){
		$("#CultureDropdown").attach("CultureDropdown");
		$("#CloseCultureNotice").attach("CloseCultureNotice");
	});
}(jQuery));