// When the document loads do everything inside here ...
$(document).ready(function(){

/*
	$('.CLink a').hover().toggle(function(){
		$(this).next("img").css("display", "block");
	},
	function() {
		$(this).next("img").css("display", "none");
	});

    $(".CLink a").hover(
      function () {
		$(this).prev("img").css("display", "block");
      }, 
      function () {
		$(this).prev("img").css("display", "none");
      }
    );
*/

}); //close $(


$(function(){
	$.superbox.settings = {
		closeTxt: "Close",
		loadTxt: "Loading...",
		nextTxt: "Next",
		prevTxt: "Previous"
	};
	$.superbox();
}); 
