$(function () {
    var tabContainers = $('div#banner > div.product');
    
    $('div#products ul li a').click(function () {
		if ($.browser.msie){
			tabContainers.hide().filter(this.hash).show();
		}else{
        	tabContainers.fadeOut('slow').filter(this.hash).fadeIn('slow'); 
		}
        
        $('div#banner div.active').removeClass('active');
        $(this).addClass('active');
        
        return false;
    })
});
