// HOMEPAGE PANELS -WITH CLICK EFFECT
//jQuery(document).ready(function() {
//	jQuery('.fadeThis').each(function () {
//		var homeFade = jQuery('> span.panel-over', this).css('opacity', 0);
//		jQuery(this).hover(function () {
//			homeFade.stop().fadeTo(250, 1);
//		}, function () {
//			homeFade.stop().fadeTo(500, 0);
//		})
//			.click (function () {
//			jQuery('.fadeThis > span.panel-over').css('opacity', 0);
//		});
//	});
//});

// HOMEPAGE PANELS - WITHOUT CLICK EFFECT
jQuery(document).ready(function() {
	jQuery('.fadeThis').each(function () {
		var homeFade = jQuery('> span.panel-over', this).css('opacity', 0);
		jQuery(this).hover(function () {
			homeFade.stop().fadeTo(250, 1);
		}, function () {
			homeFade.stop().fadeTo(500, 0);
		});
	});
});

// CONTACT US PANEL
jQuery(document).ready(function() {
	jQuery('.fadeContact').each(function () {
		var homeFade = jQuery('> span.panel-over', this).css('opacity', 0);
		jQuery(this).hover(function () {
			homeFade.stop().fadeTo(250, 1);
		}, function () {
			homeFade.stop().fadeTo(500, 0);
		});
	});
});

// SMALL PANELS
jQuery(document).ready(function() {
	jQuery('.fade').each(function () {
		var bFade = jQuery('> div', this).css('opacity', 0);
		jQuery(this).hover(function () {
			bFade.stop().fadeTo(250, 1);
		}, function () {
			bFade.stop().fadeTo(500, 0);
		});
	});
});
