$(document).ready(function() {
    $(".subCats:not(.subCatCurrent)").hide();
    $(".subCatHeader").click(function(){
    	$(this).parent().siblings().children(".subCats").slideUp();
    	$(this).siblings().slideToggle();
    	return(false);
    });
   
    $("#queryString").click(function(){$(this).val("");});
   
    if($("a[rel^='prettyPhoto']").length>0)
  		$("a[rel^='prettyPhoto']").prettyPhoto({default_width: 640,
			default_height: 475});
});