$(function() {
		$('a[href^=http]').click( function() {
			window.open(this.href);
			return false;
		});
	});
	$('#header').hover(function(){
		$(this).addClass('pointer');
		$(this).attr('title', 'Big Cat Entertainment');
	});
	$('#header').click(function() {
		window.location.href = '<?php echo BASE_URL; ?>';
});
