﻿function selectChange() { 
	if (document.getElementById('selector').value=="no") {
		return false;
	}
	else { 
		window.location = document.getElementById('selector').value;
	} 
}

$(document).ready(function(){
	$('#front #main .wrap').equalHeights();
	$('#inside #main .wrap').equalHeights();
	if ($.browser.msie) {
		$('#front #main .masthead').boxShadow(0, 1, 6, "#022E5B");
		$('#inside #main .wrap').boxShadow(0, 1, 30, "#022E5B");
	};
});