// remap jQuery to $
jQuery(function($) {
if (!$.cookie('touchscreen') || window.location == 'http://vesterheim.org/touchscreen/') {
 return;	
}
//return;
$('<link rel="stylesheet" type="text/css" href="http://vesterheim.org/touchscreen/_/css/touchscreen-nav.css">')
 .appendTo('head');
$('<nav id="touchscreen"><button class="back"><img alt="Back" height="75" src="http://vesterheim.org/touchscreen/_/img/ui/back-button.png" width="75" /></button><button class="home"><img alt="Home" height="75" src="http://vesterheim.org/touchscreen/_/img/ui/home-button.png" width="75"></button></nav>')
 .find('button.back')
  .click(function() { window.history.back(); })
 .end()
 .find('button.home')
  .click(function() { window.location = "http://vesterheim.org/touchscreen/"; })
 .end()

 .appendTo('body');
});

