$(function() {
	$('#affiliates').cycle({
		fx: 'fade',
		random: 0,
		timeout: 5000,
		speed: 2000
	});

	// Don't use Blend plugin in IE
	if(!$.browser.msie){
		$(".our-products #product-menu a").blend();
		$(".products #product-menu a").blend();
	}

	$('body.colours .view-Products .views-field-title h2').append('<span class="colour-title"></span>');
	
	$('body.colours .view-Products .views-field-field-product-image-fid img').attr('id', 'full-product');

	$('body.colours .view-Products .views-field-field-product-image-fid-1 a').click(function() {
		var fullPath = $(this).attr('href');
		var fullAlt = $('img', this).attr('title');
		
		$('#full-product').attr({ src: fullPath, alt: fullAlt, title: fullAlt });
		
		if ( fullAlt.length ) {
			$('body.colours .view-Products .views-field-title h2 .colour-title').html(' - ' + fullAlt);
		}
		
		return false;
	});
});
