$(document).ready(function() {
	SciGirls.initialize();
});

var SciGirls = (function() {
	var self = {
		"initialize": function() {
			/* Plug-ins */
						
			/* Event listeners */
			$("a.external").live("click",function() {
				window.open(this.href);
				return false;
			});
			
			$("body").bind("cbox_closed", function() {
				if ($("#SciGirls_Shell").length > 0) {
					var flash = document.getElementById("SciGirls_Shell");
					flash.regainFocus();
				}
			});
		}
		
	};
	return self;
})();
