	// $(document).ready is a universal jQuery event
	// Most jQuery code you write will go inside this function
	$(document).ready(function(){
	
		// this is where you call siteFeature
		// see the README and the original demo (index.html) for examples on how to customize siteFeature
		$('#preFeature').siteFeature({

		containerWidth: '685px',
		containerHeight: '300px',
		imgWidth: '490px',
		autoPlay: true,
    	autoPlayInterval: 8000,
		tabControl: 'hover',
		tabLock: 0,
		imgBgsAnimationType: 'fade',
		txtBoxOpacity: 0.7,
		tabsAnimateWidth: '+=0',
		txtBoxPauseBetweenInOut: 100,
		startTab: 1
		});

	}); // end $(document).ready

