jQuery(function($){
  grlinksDisplayBlock = function(call,element,a,b,c) {
    $.get(call, function(data)  {
        var feeds = $(element);
        feeds.html(data);
        
        //feeds.fadeOut(1, function(){
          //feeds.html(data).fadeIn(1);
        //});
    });
		//alert(call)
    $(document.getElementById(a)).addClass("active");
    $(document.getElementById(b)).removeClass("active");
    $(document.getElementById(c)).removeClass("active");
    return false;
  };
	
	changeGRlinksBtnLink = function (divclass, name) {
		$("." + divclass + " a").attr("href", name);
		return false;
	};
	
	chBtn = function(imPath) {
		document.getElementById("grlinks-more-btn").style.background = "url(" + imPath + ")";
	}
	
	retBtn = function(imPath) {
		document.getElementById("grlinks-more-btn").style.background = "url(" + imPath + ")";
	}
});