$(document).ready(function() { 
						   onfocus="this.blur();"
			$('a').focus(function() {
							$(this).blur();  
								  });
			$(".mailme").yasp();
			
			
		// bg-image random	
	  bgImageTotal=10;
      randomNumber = Math.round(Math.random()*(bgImageTotal-1))+1;
      imgPath=('images/seitenbg/'+randomNumber+'.jpg');
      $('body').css('background-image', ('url("'+imgPath+'")'));
			
			
			
						   
});



