// object to hold split email string
window.emaillink = {a: 'mailto', b: ':greg', c: 'ory@', d: 'fates', e: '.co.uk'};
var gv = window.emaillink;

window.onload = function(){
	$(document).ready(function() { // Execute dependant commands when jquery is ready
		// preload images for rollovers to prevent flicker on image first load
		$(['/images/menu/home_highlight.png','/images/menu/me_highlight.png','/images/menu/game_highlight.png','/images/social/email_highlight.png','/images/social/facebook_highlight.png','/images/social/linkedin_highlight.png','/images/social/twitter_highlight.png']).preload();
	
		$('#open_email').click(function() { // email link to prevent scraping
			window.location = gv.a + gv.b + gv.c + gv.d + gv.e;
		});
	});
}


