$(document).ready(function(){
	/*--- Social Slider --- */
	
	$("#socialSlider").hover(function() {
		$("#socialSlider .slider").addClass('open');
				
	} , function() {
		$("#socialSlider .slider").removeClass('open');		
		
	});
	
	// This JS library manages the hiding/showing of the Print and Add to My Save Articles links in the article tools section of an article page
		
	// add print link
	$('#articleTools ul').prepend('<li class="print"><a href="#print" title="Print this news article">Print this article</a></li>');
	$('#articleTools li.print a').click(function() {
		window.print();
		return false;
	});
	
	$('#socialSlider ul').append('<li class="last"><a href="#print" title="Print this news article"><img src="/_hbi_ui/_MTO/_images/icon/printer.gif" alt="Print" title="Print" /><span>Print</span></a></li>');
	$('#socialSlider li.last a').click(function() {
		window.print();
		return false;
	});
	
});
