$(document).ready(function() {

$('#closer').click(function() {
  $('#socialsidebox').fadeOut('fast');
  $('#socialsidebox-close').fadeOut('fast');
});

$('#socialtools a').click(function(e) {
	e.preventDefault();
	
	var destination=$(this).attr('href');
	$('#socialsidebox').load(destination);
	
	$('#socialsidebox-close').fadeIn('fast');
	$('#socialsidebox').fadeIn('fast');
});

$("img.rollover").hover(
	function() {
	this.src = this.src.replace("_off","_on"); 
	},
	function() { 
	this.src = this.src.replace("_on","_off"); 
	}
);
		
});
	



