function onBefore() { 
    $('#label_car') 
        .html(this.alt); 
}; 

$(document).ready(function() {

$('.services1').cycle({
    speed:  1500,
		delay:  300 
});

$('.services2').cycle({
    speed:  1500,
		delay:  300 
});

$('.img_rotate').cycle({
    speed:  1500,
		delay:  300, 
    before: onBefore 
});

$('#captcha').hide();

});

