////////////////////////////////////////////////
//
// util.js[]
//
////////////////////////////////////////////////

jQuery.noConflict();

jQuery(function(){

jQuery("#subNav").hide();

jQuery("#lifeButton").hover(function(){
jQuery("#subNav").show();
}, function(){
jQuery("#subNav").fadeOut("fast");
});
});	
