 $(document).ready(function() {
    $('select.go').bind('change', function() { 
	if(this.value != '') {
		location.href = this.value;
	}
    });
    if($('div.main-left').height() > 468) {
	$('div.main-right').height($('div.main-left').height());
	$('ul.subtab').css('top', $('div.main-left').height() - 450);
    }
    $('ul.faq li span').click(function() {
	$(this).siblings('p').toggle();
    });
 });