$(function(){  
  $("div.toggle > a.title").click(function(){
    $(this).next("ul").slideToggle();
    return false;
  });
  
  $("form.full-search fieldset div.colors input:checked").each(function(){
    $("form.full-search fieldset div.colors label[for=" + $(this).attr("id") + "]").addClass("on");
  });
  
  $("form.full-search fieldset div.colors label").click(function(){
    $(this).toggleClass("on");
  });
  
  $("a[rel='cbox']").colorbox({maxHeight:"600px",maxWidth:"100%"});
  $("a[rel='cbox2']").colorbox({maxHeight:"600px",maxWidth:"100%"});
});
