//=======================================================================================================
//-------------------------------------------------------------------------------------------------------
//	Custom Javascript functions
//-------------------------------------------------------------------------------------------------------
//=======================================================================================================
function toggleShareLinks()
{
	if (document.getElementById('buttons').style.display == 'block')
	{
		hideButtons();
	}

	else
	{
		showButtons();
	}
}

function showButtons()
{	
	object				 = document.getElementById('buttons');
	object.style.display = 'block';
	object.style.left	 = getOffsetLeft( 'sharebutton' ) +  'px';
	object.style.top	 = getOffsetTop( 'sharebutton' ) - getOffsetHeight( 'buttons' ) + 'px';
}

function hideButtons()
{
	document.getElementById('buttons').style.display = 'none';
}

$(document).ready(function(){	

	//---------------------------------------------------------------------------------------------------------
	//		remove text from the textboxes when one focuses on the textbox
	//---------------------------------------------------------------------------------------------------------
    $('#search input,.inline-label input,.inline-label textarea').each(function(){

		$(this).focus(function(){
			$(this).siblings("label").fadeTo( 75, 0 );
		});

		$(this).blur(function(){
			if( $(this).val() )
			{
				fade_on_blur	= 0;
			}
			else
			{
				fade_on_blur	= 1.0;
			}
			$(this).siblings("label").fadeTo( 75, fade_on_blur );
		});

	});

});


