J = jQuery.noConflict();
J(document).ready(function(){
	// languages
	var _lgHeight = J('#header .menu li ul').outerHeight();
	J('#header .menu li').hover(function(){
		if (J(this).children('ul').length) {
			J(this).find("a:first").animate({top:-(_lgHeight)}, {queue:false, duration:400});
			J('ul', J(this).parent()).animate({top:-(_lgHeight - 15)}, {queue:false, duration:400});
		}
	}, function(){
		J(this).find("a:first").animate({top:0}, {queue:false, duration:400});
		J('ul', J(this).parent()).animate({top:15}, {queue:false, duration:400});
	});
	J('select.about').bind("change", function(){
			if (J(this).attr('value') == 'other') {
				J('#specify').removeAttr("disabled");
				J('#specify').addClass("show");
			}
			else {
				J('#specify').attr('value', '');
				J('#specify').attr("disabled", 'disabled');
				J('#specify').removeClass("show");
				
			}
	});
});