// JavaScript Document

// CHIAMATE ONLOAD
$(document).ready(function() {

// PNG Fix
$(document).pngFix();

// Slide Home Page

$(function() {
$('#slide_pics').cycle({ 
    fx: 'fade', 
    speed: 4000,
	timeout: 6000,
    delay:  -4000
 });
});

$('.logo_home').mouseover(function() {$(this).css({height: '86px'})});
$('.logo_home').mouseout(function() {$(this).css({height: '66px'})});

$('.docg_vini').stop().mouseover(function() { $(this).children('span').stop().animate({height : '40px'}, 300); }).mouseout(function() { $(this).children('span').stop().animate({height : '0px'}, 300); });
$('#home_banner a').stop().mouseover(function() { $(this).children('img').stop().animate({opacity : .5}, 300); }).mouseout(function() { $(this).children('img').stop().animate({opacity : 1}, 300); });


// FINE CHIAMATE ONLOAD
});
