// JS that places the banner for mobile site

$(document).ready(function(){
	
	if (jQuery.browser.mobile) {
		$("#wrapper").prepend('<br/><div id="homeld"><div id="ldleft">Visit our mobile PwC campus careers site</div><div id="ldright"><a href="http://m.pwc.tv">m.pwc.tv</a></div><br clear="all" /></div>');
		$("#homeld").click(function(){
			window.location.replace("http://m.pwc.tv");
		});
	} 

});


