createAddThisButtonEffects();

function createAddThisButtonEffects()
{
		Element.observe($('inventoryDetailSocialNetworkingPlugin'), 'mouseover', (addThisButton_mouseover));
		Element.observe($('inventoryDetailSocialNetworkingPlugin'), 'mouseout', (addThisButton_mouseout));
}

function addThisButton_mouseover()
{
		$('inventoryDetailSocialNetworkingPlugin').down('img').src='Images/ControlLibrary/Consumer/InventoryDetail/shareBtn_over.png';
}

function addThisButton_mouseout()
{
	$('inventoryDetailSocialNetworkingPlugin').down('img').src='Images/ControlLibrary/Consumer/InventoryDetail/shareBtn.png';
}