 

$(function(){
	
	// FACEBOOK WIDGET SHOW OR HIDE
	$(".fb-widget").hide();				//slide up and down when hover over heading 2
	$("#fb").hover(function(){			// slide toggle effect set to slow you can set it to fast too.
		$(".fb-widget").show("slow");
		return true;
	});
	$(".fb-widget").mouseout(function(){
		 $(this).hide("slow");  
	});
	 
	 
		
	
	$('#slider2').anythingSlider({
		 // Navigation
		buildNavigation     : false,
		buildStartStop      : false,
		resizeContents      : false,
		
		animationTime       : 1500,  
		
		// Slideshow options
		autoPlay		: true,
		pauseOnHover    : true,
		resizeContents	: false, 
		// Times
  		delay           : 5000      // How long between slideshow transitions in AutoPlay mode (in milliseconds)
     
	  /* navigationFormatter : function(i, panel){
        return ['Recipe', 'Quote', 'Image', 'Quote #2', 'Image #2', 'Test'][i - 1];
       }*/
      })
      .anythingSliderFx({
        // base FX definitions
        // '.selector' : [ 'effect(s)', 'size', 'time', 'easing' ]
        // 'size', 'time' and 'easing' are optional parameters, but must be kept in order if added
      //  '.quoteSlide:first *' : [ 'grow', '24px', '400', 'easeInOutCirc' ],
      //   '.quoteSlide:last'    : [ 'top', '500px', '400', 'easeOutElastic' ],
      //   '.expand'             : [ 'expand', '10%', '400', 'easeOutBounce' ],
     //    '.textSlide h3'       : [ 'top fade', '200px', '500', 'easeOutBounce' ],
     //    '.textSlide img,.fade': [ 'fade' ],
      //   '.textSlide li'       : [ 'listLR' ]
      });
});	
