
jQuery(document).ready(function($){
	

//Testimonial Slideshow

$('#s6').cycle({ 
    fx: 'custom', 
    cssBefore: {  
        top:  0, 
        left: 0, 
        width: 0, 
        height: 0,  
        zIndex: 1  
    }, 
    animIn:  {  
        width: 450, 
        height: 378  
    }, 
    animOut: {  
        top:  450, 
        left: 375, 
        width: 0, 
        height: 0 
    }, 
    cssAfter: {  
        zIndex: 0  
    }, 
	timeout: 9000, 
    delay: -5000   
});




// columize lists	
$('.listcol').columnizeList({cols:2,constrainWidth:1});


// Animated buttons  
/*
var currentItem = null;
var undoTimerHodler = false;
$(document).ready(
	function()
	{
		$('.simplesteps li a')
			.bind('mouseover', doItem);
		$('.simplesteps li a')
			.bind('mouseout', undoItem);
	}
);
function doItem()
{
	if(undoTimerHodler)
		window.clearTimeout(undoTimerHodler);
	if(currentItem) {
		$(currentItem).animate({marginLeft: 0}, 200);
	} else {
		$('.simplesteps li a').not(this).animate({marginLeft: 0}, 200);
	}
	currentItem = this;
	$(currentItem).animate({marginLeft: 5}, 200);
}
function undoItem(){	undoTimerHodler = window.setTimeout(undoTimer, 50);}
function undoTimer(){$('.simplesteps li a').animate({marginLeft: 0}, 200);	currentItem = null;}
*/

});  // end doc ready
