$(document).ready(function()
	{
	// remove outline from links
	$("a").click(function()
		{
			$(this).blur();
		});
	// open a[rel='external'] in a new window, target="_blank" is deprecated for now
	$("a[rel='external']").click( function()
		{
			window.open( $(this).attr("href") );
			return false;
		});
	// menu effects
	$("div#menu ul li a").hover(function()
		{
			$(this).stop().animate({ marginLeft: "10px", duration: 150});
		}, function() {
			$(this).stop().animate({ marginLeft: "0px", duration: 150});
		});
	// menu effect for the current menu-item
	$("div#menu ul li a.current").hover(function()
		{
			$(this).stop().animate({ marginLeft: "20px", duration: 150});
		}, function() {
			$(this).stop().animate({ marginLeft: "10px", duration: 150});
		});
	// cufon
	Cufon.replace("h1, h2, h3, h4, h5, div#menu ul li", { textShadow: "1px 1px #8fc6f1", color: "-linear-gradient(#101010,#353535)"});
});
