$(document).ready( function() {

	 if($.browser.msie) { $( function() { 
		$('input[@type=submit]').addClass('input_submit');
		$('input[@type=text], input[@type=password]').addClass('input_text');
		$('#footer li:first, #nav li:first').addClass('first-child');
		$('#news a').append(' &rarr;');
	 })};
	 
	$('#home-list span').prepend('<b></b>');
	$('#home-list li > a').each(function(){
		text = $(this).text();
		newtext = text.split(' ');
		text = '';
		for(i=0;i<newtext.length-1;i++){
			text = text + ' ' + newtext[i];
		}
		text = text + '<br/>' + newtext[newtext.length-1];
		$(this).html(text);
	});
	$('li.easyclear').each(function(i) { $(this).children().prepend('<b></b>'); });
	 $('#footer li').not(':first, .info').prepend(' |&nbsp;&nbsp;');
});



