// JavaScript Document

$(document).ready(function(){
		$("img.fade").bind("load", function () { $(this).fadeIn('slow'); });
        $("img.logo").bind("load", function () { $(this).fadeIn('slow'); });
		$("img.firm").bind("load", function () { $(this).delay(200).fadeIn(2000); });
		$("img.background_image").bind("load", function () { $(this).fadeIn('slow'); });
		
		$('.scroll-pane').jScrollPane(
		{
			autoReinitialise: true
		}
		);
		$('#pane2').jScrollPane({showArrows:false});
		$("a.fancybox").fancybox();

		});

