jQuery('document').ready(function() {
	var a=navigator.userAgent;
	var s=false;
	if(window.location.hash=='#mobtest') {
		s='Get our mobile app';
	}
	else if(a.match(/iphone/i)) {
		s='Get our iPhone app';
	}
	else if(a.match(/ipod/i)) {
		s='Get our iPod app';
	}
	else if(a.match(/ipad/i)) {
		s='Get our iPad app';
	}
	else if(a.match(/android/i)) {
		s='Get our Android app';
	}
	else if(a.match(/blackberry/i)) {
		s='Get our BlackBerry app';
	}
	if(s) {
		jQuery('body').css({'border-top': '0px'});
		jQuery('#bottomFade').before('<a href="http://www.northampton.ac.uk/mobile/m"><div style="background: #ecf1f4; height: 50px; border-bottom: 10px solid #a8cf00;"><div style="height: 42px; color: #000; font-size: 3em; line-height: 42px; width: 100%; margin-left: auto; margin-right: auto;" id="mobileBanner">'+s+'</div></div></a>');
	}
});

