$(document).ready(function(){
	
	$('a.rel, a.external').click( function(){
		window.open( $(this).attr('href') );							
		return( false );
	});  
	
	//ie6
	$("a").hover(function(){ $(this).addClass('hover'); },function(){ $(this).removeClass('hover'); });
	
	// cufon
	Cufon.replace('h1, h2',{fontFamily: 'Arial'});
	
});
