$(document).ready(function(){
	
	$('.scroll-pane').jScrollPane({showArrows:true, arrowSize: 15, scrollbarWidth: 11, scrollbarMargin: 0,dragMinHeight: 31, dragMaxHeight:31});

	$('.photos').append('<img src="images/content/fade_bottom.png" class="bottom" style="width:330px;height:20px;" /><img src="images/content/fade_top.png" class="top" style="width:330px;height:20px;" />');
	
	$('.photos .scroller a')
		.lightBox({overlayBgColor: '#FFF', containerBorderSize: 2, imageBtnPrev: 'images/links/prev.gif', imageBtnNext: 'images/links/next.gif'})
		.append('<div class="flasher" style="display:none;"></div>')
		.hover(
      function () {
        $(this).children('div.flasher').show().fadeOut(400);
      }, 
      function () {
        $(this).children('div.flasher').hide();
      }
    );
	
	try {
  		document.execCommand("BackgroundImageCache", false, true);
	} catch(err) {}
	
	
});