$(function() {
	if(($.browser.msie) && ($.browser.version<=6)) {
		$('.content1 form table td:first').addClass('firsttd');
		$('input[@type=button]').addClass('button_type');
		$('input[@type=submit]').addClass('submit_type');
		$('input[@type=text]').addClass('text_type');
	}
	$('div.summarybox')
		.mouseover(function() { $(this).addClass('hover')})
		.mouseout(function() { $(this).removeClass('hover') });
	$('div.news-latest-item').prepend('<b class="topb"></b>').append('<b class="bottomb"></b>');
	
	$('#solutionselect select')
		.change(function(){
			var x = $(this).val();
			$(this).parents('form').attr('action',x).submit();
		});
});

function DoSelect(id,val){
	$('#'+id).val(val);
}
function DoSubmit(id){
	$('#'+id).submit();
}