/* <![CDATA[ */

var clearedFields = new Array();
$(document).ready(function() {
	
/* slideshow */
$(".slideshow")  
.cycle({ 
    fx:     'fade', 
    speed:  1500, 
    timeout: 6000,
    pager:  '#nav', 	
	
    pagerAnchorBuilder: function(idx, slide) { 
        // return selector string for existing anchor 
        return '#nav li:eq(' + idx + ') a'; 
	}
}); 

$("#testimonials")  
.cycle({ 
    fx:     'scrollLeft', 
    speed:  800, 
    timeout: 6000
});



$(':text').click(function() {

var field_name = $(this).attr('name');

if (jQuery.inArray(field_name, clearedFields) < 0) {

$(this).attr('value', '');

clearedFields.push(field_name);

}

});

});

/* ]]> */

