jQuery(function($){
	$('div.graphicLink').hover(function(){
		$(this).addClass('glOver').css( 'cursor','pointer' ).css( 'cursor','hand' );
		window.status = $(this).find('a').attr('href');
	},
	function(){
		$(this).removeClass('glOver');
		window.status = '';
	});
	$('div.graphicLink').click(function(){
		if($(this).find('a').attr('rel') === 'external'){
			//empty because this is handled by xhtml target script
		}else{
			window.location = $(this).find('a').attr('href');
		}
	});
});