    jQuery(document).ready(function() { 
      $('.infiniteCarousel').infiniteCarousel(); 
      transparentBg('goto_detail',home_url+'images/brand2010/bg_product_list_detail.png');    
      transparentBg('product_content .info',home_url+'images/brand2010/bg_product_list_info.png');
      transparentBg('other .item .price',home_url+'images/brand2010/bg_other_price.png');
      var search = $(".ac_search").val();
    	$(".ac_search").autocomplete(home_url+"rq/ac.php?what=search", {
    		width: 173,
    		selectFirst: false
    	});    	
      $(".ac_search").result(function(event, data, formatted) {        
    		if (data) $(this).parent().find("input.hidden").val(data[0]);
        search = null; 
    		search = data[0];           		
    	});    	
    	$(".nocomplete").attr("autocomplete","off");       
      $('.lightbox').lightBox();                     
      menu(colection);
          
      
      $('.product .goto_detail').hide();
      $('.product').hover( function(){
        $(this).find('.info').fadeOut("fast");
        $(this).find('.goto_detail').fadeIn("fast");
      }, function(){
        $(this).find('.goto_detail').fadeOut("fast");
        $(this).find('.info').fadeIn("fast");
      });
      
      
       $('.extra').css("border-bottom","4px solid #B49413");
       $('.sub_extra').hide();
       $('.active').css('color','#888');
       $('.sub_extra.wallpapers').fadeIn(1000);                               
       $('.active.wallpapers').css('color','#000');
                              
      
      
    });
    
    
    
    
    
