  if($("a[rel^='lightbox']").length) {
        $.insert(WB_URL+'/include/jquery/plugins/jquery-slimbox2.css');
        $.insert(WB_URL+'/include/jquery/plugins/jquery-slimbox2-min.js');
      }
	  
   if($(".title").length) {
        $.insert(WB_URL+'/include/jquery/plugins/jquery.dropshadow.js');

				$(".menu").dropShadow({left: 3, top: 1, color: "#333333",opacity: 0.4, blur: 1});
				$(".title").dropShadow({left: 3, top: 3, blur: 1, color: "#03f", swap: false});
				$("#btnToggle").dropShadow();
                $(".lab").dropShadow({left: 10, top: 10, color: "#000", blur: 1, opacity: 0.4});

				// Toggle all shadows on and off
				$("#btnToggle").toggle(
					function()
					{
						$(".dropShadow").hide();
						$(this).val("Show Shadows");
					},
					function()
					{
						$(".dropShadow").show();
						$(this).val("Hide Shadows");
					});

      }
	  
	$(function(){
		$('.tooltip').hoverbox();
	});
