$(document).ready(function(){
    
    // LANGUAGE ROTATING //
    $('.choose-language').scrollable({
        vertical: true, 
        circular: true, 
        easing: 'swing'
    }).autoscroll({ 
        autoplay: true, 
        interval: 2000 
    });
    //Crawler//
	marqueeInit({
	uniqueid: 'mycrawler2',
	style: {
		'padding': '2px',
		
		'width': '540px',
		'height': '180px'
	},
	inc: 5, //speed - pixel increment for each iteration of this marquee's movement
	mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
	
	neutral: 16,
    stopped: true,
	savedirection: false
});
//END of Crawler//
    
    // BANNER TABS //
	
	$(function() {
	// setup ul.tabs to work as tabs for each div directly under div.panes
	$("ul.tabs").tabs("div.panes > div",{
        effect: 'fade',
        fadeOutSpeed: 'slow',
        rotate: 'true'});
	
	});

	
	
	// $('.tabs').tabs('#banner > div', {
    //    event:'mouseover',
	//     effect: 'fade',
	//     fadeOutSpeed: 'slow',
    //    rotate: 'true'
	// }).slideshow({
	//     autoplay: true,
	//     interval: 100000  
	//  });
    
    // FAQ //
    $('.answer').hide();
    
    $('.faq-list h3').click(function(){
        $(this).next().toggle();
    });
    
    // ZEBRA STRIPES //
    $('.pricing ul li:nth-child(even), #newspaper-pricing tr:nth-child(even)').addClass('alternate');
    
    // SIGN UP //
    $('.books-container').hover(function() {
		$(this).find('div').toggle();
	});
}); 
