// For IE hover flicker bug
try {
  document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}

// Hello jQuery!
$(document).ready(function(){
// Add class to body to tell the stylesheet that JavaScript is turned on
	$("body").addClass("jsOn");
//	Hover state for Social Connections
    $(".tools_social").hover(
      function () { $(this).addClass("over"); }, 
      function () { $(this).removeClass("over"); }
    );
    $(".tools_social").click(
		function() { $(this).toggleClass("open"); }
    );
}); // Bye-bye jQuery!
