jQuery(function($){
	$('#press-carousel').children('div').css('width',($('#press-carousel').find('div').find('a:first').width() * $('#press-carousel').find('div').find('a').size()))

	var isAnimating = false;
	
	$('.move-right').live('click', function(){
		if (isAnimating) return;
		isAnimating = true;
		$('#press-carousel').children('div').animate({
			'left' : '-=' + $('#press-carousel').children('div').children('a:first').width() + 'px'
		}, function(){
			$('#press-carousel div a:first').appendTo($('#press-carousel div'));
			$('#press-carousel div').css('left','0px');
			isAnimating = false;
		})
	})
	$('.move-left').live('click', function(){
		if (isAnimating) return;
		isAnimating = true;
		$('#press-carousel div a:last').prependTo($('#press-carousel div'));
		$('#press-carousel div').css('left',-$('#press-carousel').children('div').children('a:first').width() + 'px');
		$('#press-carousel').children('div').animate({
			'left' : '+=' + $('#press-carousel').children('div').children('a:first').width() + 'px'
		}, function() {
			isAnimating = false;
		})
		
	})
	
	//load the first image
	var first_item = $("#press-carousel a:first");
	$('.press-image').hide().html('<img src="' + first_item.attr("rel") + '"/>').fadeIn(1000);
	$('.press-right').html('<h2>' + first_item.attr("title") + '</h2>' + '<p>' + first_item.attr("class") + '</p>');
	
	$("#press-carousel a").click(function() {
		var image = $(this).attr("rel");
		var title = $(this).attr("title");
		var date = $(this).attr("class");
		$.scrollTo($('.press-centre'), 750);
		$('.press-image').hide().html('<img src="' + image + '"/>').fadeIn(1000);
		$('.press-right').html('<h2>' + title + '</h2>' + '<p>' + date + '</p>');
		return false;

			

		});	

	if ($('#style-assistant-product').size() > 0) {
		
		
	};

});



