$(document).ready(function()
{

  /*------------------------------------------------------------------------*
  *
  * Simple Image Slider
  *
  /-------------------------------------------------------------------------*/

	if ($('#image-slider').find('li').length > 1)
	{
		$('#image-slider').fc_slider({ 'fade': 800, 'interval': 10000, 'autoplay':true });
	}

  /*------------------------------------------------------------------------*
  *
  * Form Focus
  *
  /-------------------------------------------------------------------------*/

	$('.searchbox .type-text input').focus(function()
	{
		$(this).data('orig-val', $(this).attr('value'));
		$(this).attr('value', '');
	});

	$('li .yform .type-text input, #nl-name, #nl-email, .formbox .type-text input, .formbox .type-text textarea').blur(function()
	{
		($(this).attr('value').length === 0) ? $(this).attr('value', $(this).data('orig-val')) : false;
	});

	if ($('.logo-mini img').length > 1)
	{
		$('.logo-mini img').live(
		{
			'mouseenter': function()
			{
				$(this).stop().animate({'opacity': '0'});
			},
			'mouseleave': function()
			{
				if (!$(this).hasClass('tapsylicious'))
				{
					$(this).stop().animate({'opacity': '1'});
				}
			}
		});


		$('img[rel=tipsy]').tipsy({
			fade: true,
			gravity: 'nw',
			html: true,
			trigger: 'click',
			close:true,
			opacity:0.9
		});
	}

});
