﻿$(document).ready(function() {
	$(".slider").jCarouselLite({          
        visible: 4,  
		auto:2000,  
		speed:1500,
		hoverPause:true,
		btnNext: ".next",
		btnPrev: ".prev"


	}); 
	
	$('.production_head span a').click(function() {
		if($(this).is('.closed')==true) {
			$('.productionbox').show();
			$(this).removeClass('closed');
		}
		else {
			$('.productionbox').hide();
			$(this).addClass('closed');
		}
	});
	
	$('.newsbox .tab').click(function() {
		$('.newsbox .tab').removeClass('active');
		$(this).addClass('active');
		$('.newsbox .tabbox').hide();
		$('.newsbox .'+this.id).show();
	});
	
	 $('.itembox').cycle({
		                       fx: 'scrollLeft',
                                       slideExpr: 'div.itemlist',
                                       timeout: 0, 
                                       next:   '.itembox .next', 
                                      cleartypeNoBg:   true
	 });


});
