$(document).ready(function(){

	$('#slider1')
	.anythingSlider({
		width          : 810,
		height         : 300,
		startStopped   : false,
		toggleControls : false,
		theme          : 'metallic',
		navigationFormatter : function(i, panel){
			return '<img src="images/test.png" border="0px">';
		}
	})
//	.find('.panel:not(.cloned) img') // ignore the cloned panels
//		.attr('rel','group')           // add all slider images to a colorbox group
//		.colorbox({
//			width: '40%',
			//height: '90%',
//			href: function(){ return $(this).attr('src'); },
			// use $(this).attr('title') for specific image captions
//			title: 'Press escape to close',
//			rel: 'group'
//		});

});

