jQuery.noConflict();
jQuery(function($){ 
// Guide here Remove "//" to activate function example here from this text "//$('#login-in')...." to "$('#login-in').." --- Juse remove two backslash(//) from js function

// sidebar socialbookmarks slidding
$(function() {var offset=$("#floating_panel").offset();var topPadding=0;$(window).scroll(function(){if($(window).scrollTop()>offset.top){$("#floating_panel").stop().animate({marginTop:$(window).scrollTop()-offset.top+topPadding})}else{$("#floating_panel").stop().animate({marginTop:0})}});});

// tab effects for featured wallpapers and others
$(".subtabz_content").hide();$("ul.subtabzs li:first").addClass("active").show();$(".subtabz_content:first").show();$("ul.subtabzs li").click(function(){$("ul.subtabzs li").removeClass("active");$(this).addClass("active");$(".subtabz_content").hide();var activeTab=$(this).find("a").attr("href");$(activeTab).fadeIn();return false});

//.Top login planel slidedown | THis is function comment dont remove this .
$('#log-in').click(function(){$('#login').slideToggle();});

// ratting info side up effect in wallpapers thumb | THis is function comment dont remove this .
$('#hovereffects').hover(function(){if($("span.mini-rating, div.control-panel").is(":hidden")){$("span.mini-rating, div.control-panel").show("slow")}else{$("span.mini-rating, div.control-panel").slideUp()}});

});
