$(document).ready( function() {
	// Translation Box
	$(".nav_translate").click(function()
	{ 
		$("#translate_box").toggle(); 
		setTimeout(hideTrans, 8000);
	});
	
	// .sub_intro boxes to links
	$(".sub_intro").hover( function () 
	{ 
		if($(".more", this).length > 0) { // Is there an element with the .more class?
			$(this).css("cursor", "pointer"); 
			$(this).css("cursor", "hand");
		}
	});
	
	$(".sub_intro").click( function ()
	{
		if($(".more", this).length > 0) { 
			document.location = $(".more", this).attr("href");
		}
	});
});

function hideTrans() {
	$("#translate_box").hide();
}