$(document).ready(function(){
	$('#header h1').click(goToHomepage).css('cursor','pointer');
	$('#nav').dropDownMenu();
	$('a[href="'+CJ_URL+'"]').click(openCJ);
});
function goToHomepage(event){
	event.preventDefault();
	window.location = './';
}
function openURL($url){
	financeWindow = window.open($url,"finance","scrollbars=yes, copyhistory=yes, width=850, height=750, top=20, left=20");
	financeWindow.focus();
	return false;
}
function openCJ(event){
	event.preventDefault();
	var url = $(this).attr('href');
	openURL(url);
}
