/**
* --------------------------------------------------------------------------------------
* Scripts
* ----------------------------------------------------
* Modified April 08, 2009 by Chris
* @version 4.0.1
* @author Bree Emmerson <bree@navigatormm.com>
* ----------------------------------------------------
*
* --------------------------------------------------------------------------------------
*/

/* Hieght Fix
--------------------------------------------------------------------------------------- */

$(function()
 {	
	var _height=$('.contentArea').innerHeight();
	$('.leftCol').css('height',_height);
	$('.rightCol').css('height',_height);
 });


function ReSizeSideBars(){
   new_height=$('.contentArea').innerHeight();
   $('.leftCol').css('height',new_height);
   $('.rightCol').css('height',new_height);
}

/* Scroll Pane
--------------------------------------------------------------------------------------- */
$(function()
{
$('.jScrollPane').jScrollPane({scrollbarWidth:21, scrollbarMargin:0,showArrows:true});
});

/* Navigation
--------------------------------------------------------------------------------------- */
    $(function(){
        $('.kwicks').kwicks({
            max: 250,
            duration: 250,
            sticky: true,
            defaultKwick: getCurrentMenuIdx()
        });
    });

    function getCurrentMenuIdx(){var i=0;$('.kwicks > li').each(function(idx){if($(this).hasClass(current_menu))i= idx;});return i;}
	
/* Home Picture Rotation
--------------------------------------------------------------------------------------- */
$(function() {

$('#homeFade').cycle({ 
    fx:    'fade', 
    speed:  2500 
 });
});
