jQuery(document).ready(function($){
	
	//PNG IE FIX
	$('#logo h1 a').IEPNGHack();

	// TARGET BLANK XHTML STRICT
	$('a[@rel$="external"]').click(function(){
	
		this.target = "_blank";
	
	});
	
	// AVOID EMAIL SPAM
	$('a.email').each(function(){
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});
	
	
	// Highlighted the link on the menu when is the right page
	var hreflength = location.href.length;
	var href = location.href.substring(location.href.lastIndexOf( "/" )+1,hreflength);
	if(href.search(/See/) != -1)
	{
		var href = href.substring(href.search(/See/),0);
		var href = href+'All';
	}

	$("#menu li").each(function(){
		var li = $(this);
		var attr = $("a",li).attr("href");
		
		if(($("a[@href^='"+ href +"']", li).is("a") && href!="") || ((attr.search(href) != -1) && href!=""))
		{
			li.children('a').addClass("selected");
		}
	});
	
	if(href=="")
		$("#menu li:eq(0) a").addClass("selected");

	
	
	
});