jQuery(document).ready(function($) {
	$("#jsnotice").hide();
});


// (function($) {
// 	// The Plugin Loads the Slideshow
// 	
// 	var TS = {};
// 	TS.currentlyOpen = false;
// 	TS.images = [];
// 	TS.currentMode;
// 	
// 	TS.throwError = function throwError(errorObj) {
// 		throw {
// 			name: "TomShow Error: " + errorObj.name,
// 			message: errorObj.message
// 		};
// 	};
// 	
// 	TS.onClick = function onClick() {
// 		var that = $(this);
// 		
// 		switch ( that.data("TSmode") ) {
// 			case "iframe":
// 				TS.throwError({
// 					name: "Implementation Error",
// 					message: "This Feature isn't implemented, yet."
// 				});
// 			break;
// 			
// 			case "image":
// 				// Findes all Images with the same rel attribute
// 				TS.images = $('[rel="' + that.attr("rel") + '"]');
// 			break;
// 			
// 			default:
// 				TS.throwError({
// 					name: "Mode Error",
// 					message: "choose between iframe or image"
// 				});
// 		}
// 		
// 		return false;
// 	}
// 	
// 	TS.slideOverlay = function slideOverlay() {
// 		
// 	};
// 	
// 	TS.iframeOverlay = function iframeOverlay() {
// 		
// 	};
// 	
// 	TS.openOverlay = function openOverlay() {
// 		TS.currentlyOpen = true;
// 	};
// 	
// 	TS.hideOverlay = function hideOverlay() {
// 		TS.currentlyOpen = false;
// 	};
// 	
// 	$.tomShow = {};
// 	$.tomShow.hide = TS.hideSlideshow;
// 	
// 	$.fn.tomShow = function(options) {
// 
// 		if (!this.length) { return this; }
// 		var opts = $.extend(true, {}, $.fn.tomShow.defaults, options);
// 		
// 		switch (opts.mode) {
// 			case "iframe":
// 				
// 			break;
// 			case "image":
// 				
// 			break;
// 			
// 			default:
// 				TS.throwError({
// 					name: "mode can't be Blank",
// 					message: "choose between iframe or image"
// 				});
// 		}
// 		
// 		this.each(function() {
// 			var $this = $(this);
// 			$this.data("TSmode", opts.mode);
// 			$this.click(TS.onClick);
// 		});
// 		
// 		return this;
// 	};
// 
// 	// default options
// 	$.fn.tomShow.defaults = {
// 		mode: false,
// 		defaultTwo: false,
// 		defaultThree: 'yay!'
// 	};
// 
// })(jQuery);
// 
// 
// function tomResize() {
// 	var cssLeft = parseInt( $("div.mod_customnav").css("left"), 10 );
// 	$("div.mod_customnav").width($(window).width() - cssLeft);
// }
// 
// jQuery(document).ready(function($) {
// 	$("#jsnotice").hide();
// 	
// 	$('.open-tomshow').tomShow({
// 		mode: "image"
// 	});
// 	
// 	
// 	// $('.open-fancybox').fancybox({
// 	// 	"width": "100%",
// 	// 	"height": "100%",
// 	// 	"autoDimensions": false,
// 	// 	"overlayShow": true,
// 	// 	"titleShow": false
// 	// });
// 	
// 	$(window).resize(tomResize);
// 	tomResize();
// });
