jQuery.noConflict();  
jQuery().ready(function(){


    // jQuery("*.parent > a").removeAttr("href");    


	jQuery("*.parent > a").addClass("head"); 
	jQuery("#leftmenu ul.menu li a").attr("rel", function (arr) {
	          return jQuery(this).children().text().replace(/[^A-Za-z0-9]/g,'');
	        }
			);
	jQuery("a.category, #form-login a, a.blogsection, .position a, .itemListPagination a, .pagenavbar a, .toclink").livequery(function() {
	jQuery(this).attr("rel", function (arr) {
	          return jQuery(this).text().replace(/[^A-Za-z0-9]/g,'');
	        }
		);
});

	jQuery("a.readon, a.pagenav").livequery(function() {
	jQuery(this).attr("rel", function (arr) {
	          return jQuery(this).attr("href").replace(/[^A-Za-z0-9]/g,'');
	        }
		);
});
	
	// applying the settings     


  	jQuery('*.parent > a.head').click(function() {
  	     /* old
			 this.style.removeAttribute('filter');
			jQuery(this).next().toggle(500, function() {
			   this.style.removeAttribute('filter');
			});
			return false;	*/
				jQuery(this).next().slideToggle(500);
			return false;
		    });

	
		    
// jQuery('#leftmenu ul').accordion();
         		    
			
	
	
          

});	


