        var lavalampstarts = -1;
        if(window.location.href.match(/\/about\//)) {
            lavalampstarts = 0;
        } else if(window.location.href.match(/\/research\//)) {
            lavalampstarts = 1;
        } else if(window.location.href.match(/\/impact\//)) {
            lavalampstarts = 2;
        } else if(window.location.href.match(/\/admissions\//)) {
            lavalampstarts = 3;
        } else if(window.location.href.match(/\/involve\//)) {
            lavalampstarts = 4;
        } else if(window.location.href.match(/\/news\//)) {
            lavalampstarts = 5;
        }
		jQuery(document).ready(
			function(){
                if(!navigator.userAgent.match(/MSIE 6/)) {
                    jQuery(".col").equalHeights();
                    jQuery(".col").resize(function(){
                         jQuery(".col").equalHeights();
                    });

                    jQuery("#header").corner("round bl 14px");
                    jQuery("#footer").corner("round tr 14px");
                    jQuery(".sidetitle").corner("round top");
                    jQuery("#lavalamp").lavaLamp({
                        fx: "swing",
                        speed: 600,
                        startItem: lavalampstarts
                        });
                };
				jQuery("a[href^='http:']:not([href*='" + window.location.host + "'][target='_blank'])").live('click', function(){
						jQuery(this).attr('target','_blank');
					});
				
		});
