$(document).ready(function(){
 $('.unclickable').click(function(event){
  event.preventDefault();
 });
 
 var myOpen=function(hash){ hash.w.fadeIn('fast');hash.o.css('opacity',0.8).fadeIn('fast'); }; 
var myClose=function(hash){ hash.w.fadeOut('fast');hash.o.css('opacity',0.8).fadeOut('fast'); }; 
 
 
$('#contactscreen').jqm({onShow:myOpen,onHide:myClose,trigger: 'a.trigger_contactscreen'});
});