// Slides functions
		$(function(){
			$("#slides").slides({
				generatePagination: true,
				play: 8000,
				pause: 3000,
				hoverPause: true
			});
		});

// Shadowbox functions
		Shadowbox.init({
					   skipSetup: true,
					   autoplayMovies: true
					   });
		
		function Subscribe(url) {
			
			Shadowbox.open({
						   content:	'#maillistpane',
						   player:	"inline",
						   title:	"Subscribe to Mediaryte",
						   height:	315,
						   width:	435
						   });
		};
		
		function Share() {
			
			Shadowbox.open({
						   content:	'#sharepane',
						   player:	"inline",
						   title:	"Share this Post",
						   height:	350,
						   width:	365
						   });
		};
		

