$(document).ready(function() {

	// Show/hide the panels as soon as the DOM is ready

	//set default states
	$('#com-addto span.readthrough').hide();
	$('#com-sharethis span.readthrough').hide();

	// shows the slickbox on rolling over the link 
	$('#com-addto a.link').mouseover(function() {
		$('#com-addto span.readthrough').show();
		$('#com-addto').addClass("roll-border");
	});

	// shows the slickbox on rolling over the link 
	$('#com-sharethis .stbuttontext').mouseover(function() {
		$('#com-sharethis span.readthrough').show();
		$('#com-sharethis').addClass("roll-border");
	});
	

	// close addto
	$('#addto-close').click(function() {
		$('#com-addto span.readthrough').hide();
		$('#com-addto').removeClass("roll-border");
	});

	// close addto
	$('#sharethis-close').click(function() {
		$('#com-sharethis span.readthrough').hide();
		$('#com-sharethis').removeClass("roll-border");
	});

});