var $j = jQuery.noConflict();

$j(document).ready(function() {
	
	$j("#popular .item .caption a").css({ "height": "0" });
	
	$j("#popular .item").mouseenter(function() {
		$j(".caption a", this).animate({ "height": "30px" }, 100);
	});
	
	$j("#popular .item").mouseleave(function() {
		$j(".caption a", this).animate({ "height": "0" }, 100);
	});
	
	$j("#languageselect").click(function(e) {
		e.preventDefault();
		$j("#language").fadeIn(500);
	});
	
	$j("#language .close").click(function(e) {
		e.preventDefault();
		$j("#language").fadeOut(500);
	});
	
});
