$(function() {
	/* LMSB */
	/*
	$('div.landingtype11 div.navbar, div.landingtype11 div.navbar_simple').find('ul li a').hover(function() {
		if(!$(this).hasClass('active')) {
			$(this).find('span.hover').slideDown();
		}
	}, function() {
		if(!$(this).hasClass('active')) {
			$(this).find('span.hover').slideUp();
		}
	});
	*/
	
	$('div.landingtype11 div.col2 div.product div.nav').show();
	
	$('div.landingtype11 div.cont2 div.product_category_tabs li a').click(function() {
		var ul = $(this).parents('ul:eq(0)');
		var url = ul.metadata().ajaxUrl || "";
		if (url != '') {
			$(this).parent('li').siblings().removeClass('active').end().addClass('active');
			var params = ['choice=' + ul.children('li').index($(this).parent('li').get(0))];
			if (url.indexOf('?') < 0) {
				url += '?';
			}
			url += params.join('&');
			$.get(url);
			return false;
		}
	});
	
	$('div.landingtype11 div.lmsb_advice div.speech ul.speech_bubbles').show();
	$('div.landingtype11 input.ajaxEnabled').hide();
	
	$('div.landingtype11 div.special_products fieldset input[type=submit]').hide();
	$('div.landingtype11 div.special_products fieldset select').change(function() {
		if ($(this).val() != 0) {
			window.location = $(this).metadata().gotoUrl;
		}
	});
	$('div.landingtype11 div.special_products ul li, div.landingtype11 ul.products li, div.landingtype11 ul.category_products li').hover(function() {
		$(this).addClass('active');
	}, function() {
		$(this).removeClass('active');
	});
	
	$('div.landingtype11 div.speech div.question_nav select').livequery('change', function() 
	{
		var params = ['choice=' + $(this).val()];
		var url = $(this).metadata().ajaxUrl;
		if (url.indexOf('?') < 0) {
			url += '?';
		}
		url += params.join('&');
		$.get(url, function() 
		{
			$('div.landingtype11 div.lmsb_advice div.speech ul.speech_bubbles').show();
			$('div.landingtype11 div.col1 div.lmsb_advice div.speech input.ajaxEnabled').hide();
			$.lmsbReloadSifr();
		});
		
		return false;
	});
	
	/* /LMSB */
	// document ready end
});
