// JavaScript Document
/*
jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}

$.preloadImages("./../layout/menuNormal.png", "../layout/menuCurent.png","../layout/menuHover.png","../layout/widgetIconH.png");
*/
$(function () {
			$(".commentIcon").css("display","none");
			$(".stars").animate({'opacity':'0'},100);	
			$(".commentIcon").animate({'opacity':'0'},100);
			
			$('.comemntsBox a').hover(function (){		
												 $(".commentIcon").css("display","block");
												 target = $(this).parent().children(".commentIcon");
												 target.stop().animate({'opacity':'1'},400);
												 
													 },
									   function(){
											
											target = $(this).parent().children(".commentIcon");
										    target.stop().animate({'opacity':'0'},400);
											
										});
			$(".rateingIcon a").mouseover(function (){
										target = $(this).parent().parent().children(".stars");
										target.css("display","block");
										$(".stars").animate({'opacity':'0'},100);	
									  	target.stop().animate({'opacity':'1'},400);
										target.mouseleave (function () {
																								 
											$(this).stop().animate({'opacity':'0'},400);																 
																								 
																										 });
									  
									  });
			
			$(".addtoany_share_save").css("display","block").css("width","33px").css("height","36px");
			if(    jQuery.support.boxModel == true || jQuery.support.objectAll == true ) $(".addtoany_share_save").animate({'opacity':'0'},100);
			$(".bookmark").css("display","block");
			

			});
function hackSocial()
			{
				$(".addtoany_share_save").css("padding-left","0px");
			}
