function preloader() 

{
     var i = 0;
     imageObj = new Image();
     images = new Array();
     for(i=1; i<=8; i++) 
     {
	 	images[i]= "images/skins/classic/bubble-"+i+".png";
        imageObj.src=images[i];
     }
	 
} 




$(function(){
	preloader();
   $('.coda_bubble').codaBubble();
   $('.trigger').hover(function(){
	$(this).css('margin', '1px');
	$(this).css('z-index', '500');   
   },function(){
	$(this).css('margin', '0px');
	$(this).css('z-index', '0');    
   });
   $('a.imprint').click(function() {
	   $('#overlay').css('display', 'block');
	   });
   $('.close-button img').click(function() {
	   $('#overlay').css('display', 'none');
	   });
   
});

