$(document).ready(function(){ 

      // Preload Js
      $("#reload-thumb  li div").hide();
      $('#reload-thumb').find("li").preload(); 
      $('#reload-thumb li').click(function() {
         
        $(this).fadeTo(150, 0.5,  function()    
        {
            $("#main-reload").html($(this).find("div.reload-hide").html());
          
        });
        $(this).fadeTo(150, 1); 
      });
		// Set up Sliders
			$('#slider').anythingSlider({
				startStopped    : false, 
				width           : 580,   
				theme           : 'metallic',
				autoPlayLocked  : true, 
				resumeDelay     : 10000,
				buildArrows     : false, 
				toggleControls  : false,
				onSlideComplete : function(slider){
				}
			});
 		// set up tabs widget
		  $('#tabvanilla').tabs();

	  // Set up dropdown	
      $("ul.dropdown li").hover(function(){
          $(this).addClass("hover");
          $('ul:first',this).css('visibility', 'visible');
        }, function(){
          $(this).removeClass("hover");
          $('ul:first',this).css('visibility', 'hidden');
        });
      $("ul.dropdown li ul li:has(ul)").find("a:first").append(" &raquo; ");

     // Event Widget
     jQuery('#calendar').fullCalendar({
        events: themeforce.events
        });



      
      
      
      
      
      
      
      
      
      
      
       
  });
