function RGBToHex(value) {
        if(value.substring(0,1) == '#') {
			return value;
		}
		var re = /\d+/g;
        var matches = value.match(re);
//		if(matches.length != 3) return value; 
        for( var i = 0; i < matches.length; i++ ) {
                matches[i] = parseInt(matches[i]).toString(16);
                if( matches[i].length < 2 ) matches[i] = '0'+matches[i];
        }
        return "#" + matches[0] + matches[1] + matches[2];

	}

 $(document).ready(function(){
   $('a.showSearcher').toggle(function(){
		$("."+this.id).slideDown('normal');
		$("."+this.id).addClass("searchContener");
	
   },function(){
     $("."+this.id).slideUp('normal');

   });
    
	
	$('a.showSearcher2').toggle(function(){
		$("."+this.id).slideDown('normal2');
	
   },function(){
     $("."+this.id).slideUp('normal2');

   });
    
	
	
	
   });


