$(document).ready(function(){

	$('html').removeClass('no-js').addClass('js');

	if( ! $('html').hasClass('ie6'))
	{

		$('#cl-nav li').children('a').not('.products_dd a, .showrooms_dd a').hover(function(){
			$('#cl-nav ul.products_dd, #cl-nav ul.showrooms_dd').fadeOut();
			$('#footer').css('z-index', 899);
		}, function(){

		});

		$('#cl-nav-backdrop').hover(function(){
			$('#cl-nav ul.products_dd, #cl-nav ul.showrooms_dd').fadeOut();
			$(this).hide();
			$('#footer').css('z-index', 899);
		}, function(){

		});

		$('#cl-nav li.products').children('a').attr('href', '#');
		$('#cl-nav li.products').children('a').click(function(){
			return false;
		});

		$('#cl-nav li.products').children('a').hover(function(){

			if($(this).parents('#footer').length > 0){
				$('#footer').css('z-index', 999);
			}

			$(this).siblings('ul.products_dd').fadeIn();
			$('#cl-nav-backdrop').show();

			$(this).siblings('ul.products_dd').hover(function(){

			}, function(){
				$(this).fadeOut();
				$('#cl-nav-backdrop').hide();
				$('#footer').css('z-index', 899);
			})
		}, function(){

		});

		$('#cl-nav li.showrooms').children('a').hover(function(){

			if($(this).parents('#footer').length > 0){
				$('#footer').css('z-index', 999);
			}

			$(this).siblings('ul.showrooms_dd').fadeIn();
			$('#cl-nav-backdrop').show();

			$(this).siblings('ul.showrooms_dd').hover(function(){

			}, function(){
				$(this).fadeOut();
				$('#cl-nav-backdrop').hide();
				$('#footer').css('z-index', 899);
			})
		}, function(){

		});

	}
});
