// DOM Ready
$(function(){
	$('#slider').anythingSlider({
		resizeContents      : true,
		addWmodeToObject    : 'transparent',
		autoPlay			: true,
		delay				: 7000,
		navigationFormatter : function(index, panel){ // Format navigation labels with text
			return index; //return ['Vimeo-iframe', 'Vimeo-embed', 'YouTube-iframe', 'YouTube-embed', 'HTML5 Video'][index - 1];
		}
	});
});
	
