$(document).ready(function() {

	// initial view
	$('.categorybox .category:not(:first-child)').slideUp();
	$('.brandproducts .mountfinder_result:not(:first-child)').slideUp();

	// remove .first from .mountfinder_result level elements
	$('.results h3').children().removeClass('open');

	$('.results h2').click(function() {
		if ( $(this).hasClass('open') ) {
			$(this).removeClass('open');
			$(this).children().removeClass('open');
			$(this).next().children('.categorybox .category').not(':first-child').slideUp();
			$(this).next().children('.categorybox .category .brandproducts .mountfinder_result').not(':first-child').slideUp();
		} else {
			$('.results h2').removeClass('open');
			$('.results h2').children().removeClass('open');
			$('.categorybox .category:not(:first-child)').slideUp();
			$('.brandproducts .mountfinder_result:not(:first-child)').slideUp();
			$(this).addClass('open');
			$(this).children().addClass('open');
			$(this).next().children('.categorybox .category').not(':first-child').slideDown();
		}
	});

	$('.results h3').click(function() {
		if ( $(this).hasClass('open') ) {
			$(this).removeClass('open');
			$(this).children().removeClass('open');
			$(this).next().children('.mountfinder_result').not(':first-child').slideUp();
		} else {
			if ( $(this).parents('.categorybox').prev().hasClass('open') == false) {
				$(this).parents('.categorybox').prev().trigger('click');
			}
			$('.results h3').removeClass('open');
			$('.results h3').children().removeClass('open');
			$('.brandproducts .mountfinder_result:not(:first-child)').slideUp();
			$(this).addClass('open');
			$(this).children().addClass('open');
			$(this).next().children('.mountfinder_result').not(':first-child').slideDown();
		}
	});

	// HP slideshow
	if ( $("#lifestyle").is('*') ) {
		$('#lifestyle').jqFancyTransitions({ width: 325, height: 216 });
	}
});

