/*	custom jQuery javascript
	handwritten by zarino zappia	*/

function abbr_hover(){
	_gaq.push(['_trackEvent', 'interaction', 'MSc title hover']);
}
	
$(function(){
	
	$('img').bind('mouseenter', function(){ _gaq.push(['_trackEvent', 'interaction', 'image hover']); });

	$('abbr').hover(function(){
		var timeout = setTimeout("abbr_hover()",500);
	}, function(){
		clearTimeout(timeout);
	});
	
	$('#twitter, #linkedin, #facebook, #enquire, #scraperwiki').bind('click', function(){ _gaq.push(['_trackEvent', 'links', 'exit', $(this).attr('id') ]); });
	
});
