//**********************************************************************************************************************
/**
* COMPANY: Zipline Interactive
* EMAIL: infon@gozipline.com
* PHONE: 509-321-2849
* DESCRIPTION: This document contains programming required for the website templates.  Requires the jQuery library.
*/
//***********************************************************************************************************************


//***********************************************************************************************************************
//ON DOCUMENT READY FUNCTIONS
//***********************************************************************************************************************

$(function() {

 	$('#slide_control').cycle({
		fx:      'scrollHorz',
		timeout:  18000,
		speed: 1200,
		rev: 1,
		prev:    '#slider_previous',
		next:    '#slider_next'
	});
	
	$('textarea[maxlength]').each(function() {

        // Store the maxlength and value of the field.
        maxlength = $(this).attr('maxlength');
        val = $(this).val();

        // Trim the field if it has content over the maxlength.
        $(this).val(val.slice(0, maxlength));

        // Bind the trimming behavior to the "keyup" event.
        $(this).bind('keyup', function() {
            $(this).val($(this).val.slice(0, maxlength));
        });

    });
    
    $('.home_tab').click(function() {
    	var default_tab = 'events';
		var clicked_tab	= $(this).html().toLowerCase();
		
		if(clicked_tab == default_tab) {
			$('.news_tab').removeClass('tab_active').addClass('tab_inactive');
			$('#news').fadeOut();
			$('.events_tab').removeClass('tab_inactive').addClass('tab_active');
			$('#events').fadeIn();
		} else {
			$('.events_tab').removeClass('tab_active').addClass('tab_inactive');
			$('#events').fadeOut();
			$('.news_tab').removeClass('tab_inactive').addClass('tab_active');
			$('#news').fadeIn();
		}
	});

});
