jQuery(function($){
	$('input#s').toggleVal({populateFrom:'custom',text:'search'})

	$('.tabs').bind('slide', function(){
		var activeImg = $(this).children('.tab.active');
		if (activeImg.length == 0) activeImg = jQuery(this).children('.tab:first');
		var nextImg = activeImg.next().length ? activeImg.next() : jQuery(this).children('.tab:first');
		activeImg.addClass('last-active');
		nextImg.show().css({opacity: 0.0}).addClass('active').animate({opacity: 1.0}, 1000, function() {
            activeImg.removeClass('active last-active').hide();
        });
		activeImg.animate({opacity: 0.0}, 1000);
	});
	$('#roadblock #close_link').click(function(){
		$.fn.colorbox.close();
		return false;
	});
	// open roadblock
	if ($.cookie('welcome_msg')==null) {
		$.fn.colorbox({inline:true, href:"#roadblock", transition:'fade'});
	}
	$.cookie('welcome_msg',1,{expires: 365, path: '/'})
});
jQuery(window).load(function(){
	if (jQuery('.tabs .tab').length > 1) {
		setInterval( "jQuery('.tabs').trigger('slide');", 7000 );
	}
});

