$(function() {
	var ie6 = !-[1,] && jQuery.browser.version < 7;
    
	/*$('.tabs A').click(function() {
								
				
		var A = $(this), li = A.parent();
		if (!li.hasClass('tabact')) {
			alert("active is anable");
			
			$(li.parent().find('LI.active').removeClass('active').find('A').attr('rel'))
				.animate({opacity: 'hide'}, 250, function() {
					$(A.attr('rel')).animate({opacity: 'show'}, 250);
					li.addClass('active');
				});
		}
		return!1;
		
		}
	});*/
	

	ie6 && $('.ls-btn').hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});

	$('.tabs A').hover(function() {
		$(this).find('IMG').stop().fadeTo(250, 1);
	}, function() {
		$(this).find('IMG').stop().fadeTo(250, 0);
	});
	
	/*
	$('.Menu A').click(function() {
		var A = $(this), li = A.parent();
		if (!li.hasClass('active')) {
			$(li.parent().find('LI.active').removeClass('active').find('A').attr('rel'))
				.animate({opacity: 'hide'}, 250, function() {
					$(A.attr('rel')).animate({opacity: 'show'}, 250);
					li.addClass('active');
				});
		}
		return!1;
	});
	*/

	ie6 && $('.ls-btn').hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});

	$('.Menu A').hover(function() {
		$(this).find('IMG').stop().fadeTo(250, 1);
	}, function() {
		$(this).find('IMG').stop().fadeTo(250, 0);
	});

});

