		$(document).ready(function() {
			$("#content").fadeIn(3000);
			$('#home_slideshow').cycle({ 
    		fx:     'scrollLeft', 
    		speed:  1500, 
    		timeout: 3000,
    		cleartype:  1,
    		pause: 'true'  
			});
			$('#gallery_slideshow').cycle({ 
    		fx:     'fade', 
    		speed:  1500, 
    		timeout: 3000,
    		cleartype:  1,
    		prev: '#gallery_next',
    		next: '#gallery_back',
    		pause: 'true',
    		pager:  '#gallery_slideshow_pager', 
    		pagerAnchorBuilder: function(idx, slide) { 
        	// return selector string for existing anchor 
        	return '#gallery_slideshow_pager li:eq(' + idx + ') a'; 
    		}  
			});
			$('#body').jScrollPane({scrollbarWidth: 5, showArrows:false});
			$('#popup').jScrollPane({scrollbarWidth: 5, showArrows:false});
			$('#faqs').jScrollPane({scrollbarWidth: 5, showArrows:false});
			$('#sidebar').jScrollPane({scrollbarWidth: 5, showArrows:false});
			$("a.fancy_video").fancybox({
			'width': 640,
			'height': 505,
			'padding': 0,
		    'autoScale': false,
		    'transitionIn':'elastic',
			'transitionOut':'elastic',
			'type': 'iframe'
			});
			$("a.fancy_gallery").fancybox({
			'width': 900,
			'height': 500,
			'padding': 0,
		    'autoScale': false,
		    'transitionIn':'elastic',
			'transitionOut':'elastic',
			'scrolling':'no',
			'type': 'iframe'
			});
			$("a.fancy_footer").fancybox({
			'width': 500,
			'height': 400,
			'padding':20,
		    'autoScale': false,
		    'transitionIn':'elastic',
			'transitionOut':'elastic',
			'type': 'iframe'
			});
		});
		
