$( document ).ready( function()
{
	$( '.toolTip' ).tooltip( { 
		track: true, 
		delay: 0, 
		showURL: false, 
		fade: 200, 
		top: -35, 
		left: 0 
	} );
	
	$( '#slideshow' ).cycle( { 
		fx: 'fade', 
		speed: 3500 
	} );
});

function checkInput( element, text )
{
	if( element.value == text )
	{
		element.value = '';
	}
}
function resetInput( element, text )
{
	if( element.value == '' )
	{
		element.value = text;
	}
}

Shadowbox.init(
{
	players: [ 'img', 'swf', 'flv' ]
});
