$(document).ready(function(){
	
	// Right column
	$('#rightColumn .custom_hover').click(function()
    {
		// If the share box is not open
		if (!$('#rightColumn .custom_button').hasClass('active')) {	
			// Open it
			$('#rightColumn .hover_menu').fadeIn('fast');
			$('#rightColumn .custom_button').addClass('active');
		}
		// If the share box is open
		else {			
			// Close it
			$('#rightColumn .hover_menu').fadeOut('fast');
			$('#rightColumn .custom_button').removeClass('active');
		}
		
		// Disable the link
		return false;
    });
	
	// Bottom of center
	$('#mainCenter .custom_hover').click(function()
    {
		// If the share box is not open
		if (!$('#mainCenter .custom_button').hasClass('active')) {	
			// Open it
			$('#mainCenter .hover_menu').fadeIn('fast');
			$('#mainCenter .custom_button').addClass('active');
		}
		// If the share box is open
		else {			
			// Close it
			$('#mainCenter .hover_menu').fadeOut('fast');
			$('#mainCenter .custom_button').removeClass('active');
		}
		
		// Disable the link
		return false;
    });
	
	
});