jQuery(document).ready(function(){
     
     $('#getlink').click(function(){
          if ($('#getlinkcont .inner').is(':hidden')) {
               $('#getlinkcont .inner').fadeIn();
          } else {
               $('#getlinkcont .inner').fadeOut();
          }
     });
     
     $('div.coll-header').click( function(){
    	 $('div.brand-list').each(function(){
    		 if(!$(this).is(':hidden')) {
    			 $(this).hide('slow');
    			 $(this).prev().removeClass('close').addClass('open');
    		 }
    	 });
    	 $(this).removeClass('close').addClass('open');
    	 $(this).next().show('slow');
    });
    
     $('a.largeIt').imagelook();
});
