$(document).ready(function(){
	if(isMobileBrowser()){
		// remove body background images.
		$('body').css('background', 'none white');
		
		// give a sea-bluish color to the header
		$("#header").css('background', 'none #3887CC');
		
		// fix the logo for mobile phone
		$('#header > a').css('left', '12px');
		
		//fix the menu row in the header.
		$('#header > div').css('right', '12px');
		
		// fix content transparency
		$('#content, #hemoverlay, #banners').css('background-color', 'white');
		
		// fix the hemoverlay
		$("#hemoverlay").css('width', '960px');
	}
});
