(function($){
	$(function() {
		$('a.img_change').hover(function() {
			$('#background-image img').attr('src', $(this).attr('href'));
		}, function() {
    			$('#background-image img').attr('src', '/local_images/new-home-page.jpg');
		});
		$('a.img_change').click(function() {
			return false;
		});
	});
	
	$(function() {
		$('a[rel*="external"]').click(function(){
			 //href=$(this).attr('href');
			 //href = '/outgoing/'+href;
			 pagetitle = $(this).text();
			 pagetitle = pagetitle.replace(/\s/g, "");
			 _gaq.push(['_trackPageview','/outgoing/'+pagetitle]);
		});
	});
});
