
	jQuery(function($){
		$(".selectable").jQselectable({
			set: "fadeIn",
			out: "fadeOut",
			setDuration: 150,
			outDuration: 150,
			height: 150,
			opacity: 1,
			callback: function(){
				if($(this).val().length>0) window.location = $(this).val();
			}
		});
		
		$(".simpleBox").jQselectable({
			style: "simple",
			set: "fadeIn",
			out: "fadeOut",
			setDuration: 150,
			outDuration: 150,
			height: 500,
			opacity: 1,
			callback: function(){
				if($(this).val().length>0) window.location = $(this).val();
			}
		});
		
		
		// change skins but not for IE
		if(document.all){
			$("#skin").remove();
		}else{
			var css = $("link[type='text/css']");
			$("#skin a").click(function(){
				var href = this.href.split("#")[1];
				css[1].href = css[1].href.replace(/(skin\/)\w+(\/style.css)/,"$1"+href+"$2");
				return false;
			});
		}
	});
