
      $(document).ready(function()
	  {
			//=======================
			   $("#slider-warp").scrollable().circular().autoscroll({autoplay: true, steps: 2}); 
			  //==================
		     // =======================================================
			 // Share This in Posts
			 $("div.share-this'").mouseover(function () 
			 {
			       $(this).addClass("share-this-active");
			 }).mouseout(function()
			 {
			       $(this).removeClass("share-this-active");
			 });
			 
			 
			 // =======================================================
			 // Share This in Slider
			 function hideUnder() {
				   $('#slider div.under').animate({ bottom: 52}, 100);
			 }
			
			 var under;
			 $('#slider span.share-this').hover(function()
			 {   
			       clearTimeout(under);
				  
				   $(this).parents('li').children('div.under').animate({ bottom: 12}, 100);
				   
			 }, function()
			 {
		           under = setTimeout(hideUnder, .5*400);
			 });
												
			 $('#slider div.under').hover(function()
			 {
				   clearTimeout(under);
				   
				   $(this).animate({ bottom: 12}, 100);
			 },function()
			 {
				   under = setTimeout(hideUnder, .5*1000);
			 });
			 
			 
			 

	  });
	  
	  
	  
	

	  

      // ================================================================
	  // onblur="myBlur(this);" onfocus="myFocus(this);"

      function myFocus(element) 
	  {
	        if (element.value == element.defaultValue) 
			{
                  element.value = '';
            }
      }
      function myBlur(element) 
	  {
            if (element.value == '') 
			{
                  element.value = element.defaultValue;
            }
      }
