$(document).ready(function(){

	Cufon.now();
	Cufon.replace('#header h1, #content p, #news h2, #news .date, #movies h2, #movies .date', {fontFamily: 'swiss', hover: true});
	
	
	$('a[rel=external]').click(function(){
		window.open(this.href);
		
		return false;
	});
	
	$('#news .w, #movies .w').each(function(){
		$('.text, img', this).click(function(){
			var link = $(this).parent().find('h2 a').attr('href');
		
			window.open(link);
			
			return false;
		});
	});
	
});