jQuery(document).ready(function () {
  var loc = String(document.location);
	
	if (loc.indexOf("booking") != -1) {
		jQuery("div#content div#nggal16 div.ngg-gallery-thumbnail-box").each(function  () {
      var titel = jQuery(this).find("a.thickbox:first").attr("title");
			jQuery(this).css({width:'127px', height:'160px'});
			jQuery(this).append('<div style="width:113px;text-align:center;">'+titel+'</div>');
    });
	}
	
	jQuery("div#content object").each(function(){
    jQuery(this).wrap('<div class="flashvideo" style="width:'+jQuery(this).attr('width')+'px;height:'+jQuery(this).attr('height')+'px">');
  });
	jQuery("div#content img[alt='spacer.gif']").attr('width', '510');
});
