function changeDescription(id) {
	  if(id==1)
	   document.getElementById('description').innerHTML='We carry a full line of the most recognized brands in the industry.';
	  if(id==2)
	   document.getElementById('description').innerHTML='We have thousands of items from the leading brands, in stock, ready for you!';
	  if(id==3)
	   document.getElementById('description').innerHTML='Our experienced and friendly staff are ready to assist you.';
	  if(id==4)
	   document.getElementById('description').innerHTML='Most orders ship the same day. We work hard to make sure you have your goods as soon as possible.';
	/*	
	if(id==1)
		document.getElementById('description').innerHTML='<b>Shoot</b> It: Capture memories on our full line of Cameras, Voice Recorders, HD Video Recorders from the world\'s leading brands';
	if(id==2)
		document.getElementById('description').innerHTML='<b>Save</b> It: Store your memories on SD Cards, Micro SD Cards, Flash Drives, Laptops, and more.';
	if(id==3)
		document.getElementById('description').innerHTML='<b>Share</b> It: Share each moment with your loved ones. AT&T, Uniden & Motorola Phones, Webcams, & more!';
	if(id==4)
		document.getElementById('description').innerHTML='<b>Take</b> It: Take Your Moments and Memories on the road with you with our DVD Players, MP3 Video Players, Laptops, Netbooks and More.';
	*/
}

$(function () {
	$('#slider1').anythingSlider({
//		startStopped    : true, // If autoPlay is on, this can force it to start stopped
		width           : 978,  // Override the default CSS width
		height          : 323,
//		toggleControls  : true, // if true, then slide in controls on hover and slider change, hide @ other times
		theme           : 'metallic',
		onSlideComplete : function(slider){
			changeDescription(slider.currentPage);
		}
	});
});
