$(document).ready(function() { 

// MENU DROP DOWN

$('#mainmenu ul li').find('ul').hide();

$('#mainmenu ul li').hover(function() {
		$(this).find('ul:first').delay(0).show();
		}, function() {
			$(this).find('ul:first').delay(0).slideUp(0);
		});
	

// STYLE TOP LEVEL PARENT ITEM
$('#mainmenu ul ul').hover(function() {
		$(this).parent().find('a').addClass('parent-menu');
		}, function() {
			$(this).parent().find('a').removeClass('parent-menu');
		});



// SEARCH BOX INNER LABEL
$('#CAT_Search, #search').each(function() {
		var default_value = this.value;
		$(this).focus(function() {
			if(this.value == default_value) {
				this.value = '';
				$(this).addClass('active');
			}
		});
$(this).blur(function() {
			if(this.value == '') {
				this.value = default_value;
				$(this).removeClass('active');
			}
		});
	});


// TABBED CONTENT

// Set-up

$('.tabbed-content-tabbedcontent > li').addClass('tabbed-content-tabbedcontent-lis');

$('.tabbed-content-tabbedcontent > li').hide();
$('.tabbed-content-tabbedcontent li:first').fadeIn('fast');
$('.tab-menu-tabbedcontent li:first').addClass('selected-tab-tabbedcontent');

// Functions

$('.tab-menu-tabbedcontent li a').live('click', function() {

	$('.tab-menu-tabbedcontent li').removeClass('selected-tab-tabbedcontent');
	$(this).parent().addClass('selected-tab-tabbedcontent');
	
	var thisIndex = $(this).parent().index();
	
	$('.tabbed-content-tabbedcontent > li').hide(0);

	$('.tabbed-content-tabbedcontent > li').eq(thisIndex).fadeIn('slow');

	return false;

});

// FEW ITEMS FORM SETUP

$('.pick-up-goods-lift, .pick-up-goods-lift-alt, .delivery-goods-lift, .delivery-goods-lift-alt, .pick-up-stairs-desc, .delivery-stairs-desc').hide();


// FEW ITEMS FORM ACTIONS
$('#CAT_Custom_150465_0').live('focus', function() {   
  $('.pick-up-goods-lift').fadeIn(500);
});
$('#CAT_Custom_150465_1').live('focus', function() {   
  $('.pick-up-goods-lift').fadeOut(500);
});
$('#CAT_Custom_150467_1').live('focus', function() {   
  $('.pick-up-goods-lift-alt').fadeIn(500);
});
$('#CAT_Custom_150467_0').live('focus', function() {   
  $('.pick-up-goods-lift-alt').fadeOut(500);
});

$('#CAT_Custom_150466_0').live('focus', function() {   
  $('.delivery-goods-lift').fadeIn(500);
});
$('#CAT_Custom_150466_1').live('focus', function() {   
  $('.delivery-goods-lift').fadeOut(500);
});
$('#CAT_Custom_150468_1').live('focus', function() {   
  $('.delivery-goods-lift-alt').fadeIn(500);
});
$('#CAT_Custom_150468_0').live('focus', function() {   
  $('.delivery-goods-lift-alt').fadeOut(500);
});	

$('#CAT_Custom_185244_0').live('focus', function() {   
  $('.pick-up-stairs-desc').fadeIn(500);
});
$('#CAT_Custom_185244_1').live('focus', function() {   
  $('.pick-up-stairs-desc').fadeOut(500);
});

$('#CAT_Custom_185245_0').live('focus', function() {   
  $('.delivery-stairs-desc').fadeIn(500);
});
$('#CAT_Custom_185245_1').live('focus', function() {   
  $('.delivery-stairs-desc').fadeOut(500);
});


});


