Cufon.replace( 'h1, h3.cufon-title, h4, #navigation > ul li a', {hover: true});

function setupLabel() {
        if ($('.radio input').length) {
            $('.radio').each(function(){ 
                $(this).removeClass('r_on');
            });
            $('.radio input:checked').each(function(){ 
                $(this).parent('label').addClass('r_on');
            });
        };
    };

jQuery(document).ready(function() {
	     $('.radio').click(function(){
            setupLabel();
        });
        setupLabel(); 
	
	$("input[name='sample-radio']").live('change',function(){
	    var $id = "rem-" + $(this).val();
	    $("ul#test li").not('.' + $id).slideUp();
	    $("." + $id).fadeIn();
	});

	
	
	  $('ul.brands').bxSlider({
		
		auto: true,
		displaySlideQty: 7,
		moveSlideQty: 1
	
	});
	

});
