// Ready ===================================================================

$(document).ready(function()
{	
	// Antispam
	$('.antispam').each(function(index) {                 
		//$(this).find('input').val($(this).data('antispam'));
		$(this).find('input').val(2);
	});
	
	// Thickbox
    var thickbox = new sk.widgets.Thickbox();
    thickbox.control($('.thickbox'));
    thickbox.autoWidth = true;
    
    // cycle
	if($.fn.cycle)
	{
		$('#header .slides')
			.cycle({
				fx: 'fade',
				speed: 1500,
				timeout: 7000,
				easing: 'easeOutCubic'
				
			});
			
		$('.slide-news')
			.cycle({
				fx: 'scrollUp',
				speed: 1500,
				timeout: 8000,
				easing: 'easeOutCubic'
				
			});
	}

});

