File: /var/www/vhosts/pgkdistribution.com.au/citisolar.com.au/new/js/fade2.js
// JavaScript Document$(function() {
<!--
$(document).ready(function () {
// find the div.fade2 elements and hook the hover event
$('div.fade2').hover(function() {
// on hovering over, find the element we want to fade *up*
var fade2 = $('> div', this);
// if the element is currently being animated (to a fadeOut)...
if (fade.is(':animated')) {
// ...take it's current opacity back up to 1
fade2.stop().fadeTo(250, 1);
} else {
// fade in quickly
fade2.fadeIn(250);
}
}, function () {
// on hovering out, fade the element out
var fade2 = $('> div', this);
if (fade2.is(':animated')) {
fade2.stop().fadeTo(500, 0);
} else {
// fade away slowly
fade2.fadeOut(500);
}
});
});
-->