//-----------------------------------------------
// Summariser activation
//-----------------------------------------------

$(document).ready(
	function() {
		summariser = new Summariser();
		summariser.numChars = 150;
		summariser.classTag = '.excerpt';
		summariser.summariseByClassTag();

		$("form#payment").submit(function(){
			$.cookie('basket','',{ expires: -1, path: '/', domain: '.t-mobiletest.quickorder.uk.com'});
		});
		
		$('#primary p.stock').prepend('Stock Level: ');

	} // End function

);

$(document).ready(
	function() {
		$('#imageScroller').innerfade({
			animationtype: 'fade',
			speed: 1500,
			timeout: 5000,
			type: 'sequence',
			containerheight: 'auto'

		});

		$('.hideImage').css('display', 'block');
		$('#productReel').css('top', '250px');

	}

); 

$(document).ready(
	function() {
		$('#imageScroller2').innerfade({
			animationtype: 'fade',
			speed: 1500,
			timeout: 5000,
			type: 'sequence',
			containerheight: 'auto'

		});

		$('.hideImage').css('display', 'block');
		$('#productReel').css('top', '250px');

	}

); 


