
// Homepage initialisation routine

    jQuery(document).ready(function(){

	    var clearQueue = true;
	    var gotoEnd= true;

	    jQuery('.featurePanel2 span').fadeTo(0,0.0);
	    jQuery('.featurePanel span').fadeTo(0,0.0);


	    jQuery('.featurePanel2').hover(
		    function(){jQuery(this).children("a").children("span").stop(clearQueue , gotoEnd).fadeTo("normal",0.8);},
		    function(){jQuery(this).children("a").children("span").stop(clearQueue , gotoEnd).fadeTo("normal",0.0);}
	    );

	    jQuery('.featurePanel').hover(
		    function(){jQuery(this).children("a").children("span").stop(clearQueue , gotoEnd).fadeTo("normal",0.8);},
		    function(){jQuery(this).children("a").children("span").stop(clearQueue , gotoEnd).fadeTo("normal",0.0);}
	    );
    });

