$(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();
}

jQuery(document).ready(function(){var b=function(){var a=729+jQuery('#logo').offset().left;jQuery('#angle_top').css('margin-left',a)};jQuery(window).bind('resize',b).triggerHandler('resize')});
