// JavaScript Document<script type="text/javascript">
	function GetBottomContent(ID)
	{
		var contents = '';
		switch(ID)
		{
			case "ecom":
			contents = 
			'Solutions That Sell More<br /><div class="text" style="text-align:justify;">Hundreds of online stores trust their vital ecommerce operations to MicroSol and sell more. Why? Because we deliver integrated, customizable web-based online shopping cart solutions for companies of all sizes, on an easy-to-learn and manage web-based platform. In E-Commerce our services cover every aspect of E-Commerce web development, from start to finish. From one off projects to a fully outsourced offshore development team, MicroSol has the skills and capacity to work with you to meet your requirements.</div>';
			document.getElementById('blog').className = 'non-active';
			document.getElementById('social').className = 'non-active';
			break;
			case "blog":
				contents = 'Solutions That Attract More<br /><div class="text" style="text-align:justify;">We have gained good experience by completing numerous blog installations. We can also customize Wordpress blog to fit with an existing website. Our experience will be reflected in quality of our solutions in fast turn around time. In future Blogging plays a vital role in Internet World. You can easily explore your thoughts to all using your own blog. Our strategic development and consultation services include not only the execution of your blog but also all technical and marketing-related support. Our blog development services cover every aspect from start to finish.</div>';
				document.getElementById('ecom').className = 'non-active';
				document.getElementById('social').className = 'non-active';
			break;
			case "social":
				contents = 'Solutions That Connect More<br /><div class="text" style="text-align:justify;">Unswerving devotion is needed in the creation of social networking website. At MicroSol, we provide Social Network Web Design, Social interrelationship approach services, Social Platform Software Development, Social Application Development, Mobile Application Development, Social Ecommerce Integration, and other Social Media related services. Our expert team guides you through their decisive process in targeting your rival giants in social networking or focusing on the industry specific community. </div>';
				document.getElementById('blog').className = 'non-active';
				document.getElementById('ecom').className = 'non-active';
			break;
				
			default:
				contents = 'Invalid contents';
			break;
			
		}
		document.getElementById(ID).className = 'active';
		document.getElementById('bot').innerHTML = contents;
	}
 
