$(document).ready(function(){
			$(function(){
				$.superbox.settings = {
					closeTxt: "Close",
					loadTxt: "Loading...",
					nextTxt: "Next",
					prevTxt: "Previous"
				};
				$.superbox();
			});
			$(function() {
                $('#container-1 > ul').tabs();                
            });	
			$(function() {
				$('a[href^=http]').click( function() {
					window.open(this.href);
					return false;
				});
				$('a[href^=https]').click( function() {
					window.open(this.href);
					return false;
				});
			});			
		});