
	  // When the document loads do everything inside here ...
	  $(document).ready(function(){
		// When a link is clicked
		$("a.tab").click(function () {
			// switch all tabs off
			$(".active").removeClass("active");
			// switch this tab on
			$(this).addClass("active");
			// slide all content up
			$(".content").slideUp();
			// slide this content up
			var content_show = $(this).attr("title");
			$("#"+content_show).slideDown();
		});
	  });


	jQuery(window).bind("load", function() {
		jQuery("div#slider1").codaSlider()
		// jQuery("div#slider2").codaSlider()
		// etc, etc. Beware of cross-linking difficulties if using multiple sliders on one page.
	});	

jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox()
})


