$(function(){
  // Nivo Slider
  $('#nivoSlider').nivoSlider({
  	//randomStart: true
  });
  
  // FancyBox
  $("a.fancyImg").fancybox({
    'speedIn'  :  600, 
    'speedOut' :  200,
    'hideOnContentClick': true
  });
  
  $("a.fancyVid").fancybox();
  
  $(".footerFade").hover(
  	function(){
  
  		$(this).stop().animate({"bottom":"0px"});
  
  	}, function(){
  		$(this).stop().animate({"bottom":"-52px"});
  	}
  );
  
  prettyPrint();

  $(".fadeNav li").hover(function() {
    var myLi = $(this);
    //myLi.stop().animate({ backgroundColor: "#fff" }, 600);
    myLi.children("a").stop().animate({ color: "#BFBFBF"}, 600);
  },function() {
    var myLi = $(this);
    //myLi.stop().animate({ backgroundColor: "#fff" }, 400);
    myLi.children("a").stop().animate({ color: "#0069D6"}, 600);

  });
  
	$('.tabs').tabs()
	$('.pills').pills()
	
	$("a.toolTip").twipsy({
	    live: true
	  })
	
//	$('#my-modal').modal({
//	  keyboard: false
//	})

});
