
pannier.home = new Pannier_Home(jQuery);
jQuery(document).ready(pannier.home.init);

function Pannier_Home($) {
	
	this.init = init;
	function init() {
		setupEffects();
	}
	
	function setupEffects() {
		var d = 100; // duration of fade (ms)
		var off = 0.75; // opacity for "off" state
		var on = 1; // opacity for "on" state
		// fade elements and bring to full strength on hover
		$('#industries ul a, #sidebar a')
			.fadeTo(d, off)
			.hover(function() {
				$(this).stop().fadeTo(d, on);
			}, function() {
				$(this).stop().fadeTo(d, off);
			});
	}
}


