/***
* jQuery Global Site Wide
*/
jQuery.noConflict();
jQuery(document).ready(function($) {
	// Homepage scrolling images...
	if($('#hScroll').length>0) {
		$('#hScroll').cycle({ 
			fx:    'fade', 
			delay:	-3000
		});
	}
	// Homepage scrollbar
	if($('#scrollPane').length>0){
		$('#scrollPane').jScrollPane({showArrows:true, scrollbarWidth: 15, arrowSize: 16});
	}
	// Lightbox
	if($('.lbox a').length>0){
		$('.lbox a').lightBox();
	}
});



