//<![CDATA[
$(document).ready(function() {

$('#ssPics').cycle({
    fx:     'fade',
    speed:  '400',
    timeout: 9000,
	next:   '#ssNext', 
    prev:   '#ssPrev',
	
	before:function() {

		var bgcolor = $('img',this).css('background-color');
		if(bgcolor == 'transparent') {
			bgcolor = '';
		}
		$('#ssCaptionsAndNav').css('background-color',bgcolor);
               
		if((this.href) != undefined) {
			$('#ssCaptionTitle').html('<a href="' + (this.href) + '" onclick="_gaq.push([\'_trackEvent\', \'Home Carousel\', \'Click\', \'' + $('img',this).attr('title') + '\']);">' + $('img',this).attr('title') + '</a>');
			$('#ssCaptionDescription').html('<a href="' + (this.href) + '" onclick="_gaq.push([\'_trackEvent\', \'Home Carousel\', \'Click\', \'' + $('img',this).attr('title') + '\']);">' + $('img',this).attr('alt') + '</a>');
		}
		else {
			 $('#ssCaptionTitle').html($('img',this).attr('title'));
			 $('#ssCaptionDescription').html($('img',this).attr('alt'));
		}
		
	}
});

$('#ssPrev, #ssNext').click(function() {
	$('#ssPics').cycle('pause');
});

});
//]]>
