$(document).ready(function(){
 	
	$('.mainTitle').click(function(){
        $('.item:last').slideToggle();
    })
    
    // Thickbox
    var thickbox = new sk.widgets.Thickbox();
    thickbox.control($('.thickbox'));
    thickbox.autoWidth=true;
    
    if($.fn.cycle)
	{
		$('.newsBox .reset')
			.each(function(index) {
				$(this)
					.cycle({
						fx: 'scrollHorz',
						speed: 500,
						timeout: 5000,
						delay: index * 1000,
						easing: 'easeOutCubic',
						next: '.newsBox:eq('+index+') .next',
						prev: '.newsBox:eq('+index+') .prev',
						pager: '.newsBox:eq('+index+') .ft span'
					});
			});
	}
});

