$(document).ready(function(){
	
	// Slider
	var sliderSize = $('.sliderItem').size();
	var sliderWidth =  820 * sliderSize;
	$('#contentUl').css('width', sliderWidth+'px');
	
	var click = 0;
	
	$('.arrowRight a').click(function(){
		if(click == sliderSize-1) return false;
		$('#contentUl').animate({
			marginLeft: '-=820'
		}, 500);
		click++;
		return false;
	});
	
	$('.arrowLeft a').click(function(){
		if(click == 0) return false;
		$('#contentUl').animate({
			marginLeft: '+=820'
		}, 500);
		click--;
		return false;
	});
	

});

