// jQuery Cycle script which powers the Slideshow: http://jquery.malsup.com/cycle/

var $j = jQuery.noConflict();

$j(document).ready(function() {

    $j('.slides').cycle({
	
		height: 250,
		width: 903,
		fit: '1',
		fx: 'scrollLeft',
		speed: 2000,
		timeout: 6000,
		pause: '1',
		prev:   '#prev', 
		next:   '#next',
		pager:  '#blend-buttons', 
		pagerEvent: 'click'
		
	});
	
	$j('.blend-slides,.slides').css('height', '250');
		
	$j('.blend-slides,.slide,#blend-nav').css('width', '903');

});
