$(function() {

		   
	/* Setup product showcase: */
var b = $('#banner-slide'); // Get a reference to the banner div
var i = b.find('img'); // Pull all the images
b.empty().append(i); // Empty the banner div, and replace the images
b.find('img').wrap('<div class="banner-img" />'); // Wrap the images
b.cycle({fx:'scrollLeft', timeout:5000, speed:2000}); // Initialise Cycle

/* Ticker */
	var images = $('#news-ticker p');
	$('#news-ticker').cycle({fx:'scrollDown', timeout:5500, speed:1000});


// Video Pop Up
	
	$(".promo-video a").fancybox();

// Video Tutorial Pop Up
	
	$(".video-tutorial span a").fancybox();


  });
