datas = '<div  id="copy" > &copy; Copyright  2010 Medicial Staffing Group,Inc.</div>'+
							'<div id="footer_menu" >'+
							'<a href="http://twitter.com/msgstaffing"><img style="border:none" src="images/twitter.png" /></a>'+
							'<a href="http://www.facebook.com/pages/Worcester-MA/Medical-Staffing-Group-Inc/30459229935"><img style="border:none" src="images/facebook.png" /></a>'+
						'<a href="sitemap.html">Site Map |</a>'+
						'<a href="feedback.html">Feedback |</a>'+
						'<a href="privacy_policy.html">Privacy Policy </a></div>';
						
document.getElementById('footer').innerHTML = datas;

/*-------------- Menu Activation ---------------------*/

		var locations = String(location).split('/');
		var filtered_location  =  locations[(locations.length)-1].replace('#','');
		if(document.getElementById('sub2_left_menu_bg')){
		var mAs   = document.getElementById('sub2_left_menu_bg').getElementsByTagName('a');

			for(var menus = 0;menus<mAs.length;menus++){
					//if((mAs[menus].href.match('/'+filtered_location+'/i'))){ mAs[menus].id="active";} 
					this_loc = String(mAs[menus].href).split('/');
					if(this_loc[(this_loc.length)-1] == filtered_location){
								mAs[menus].id="active";
								mAs[menus].parentNode.style.display="block";
								mAs[menus].parentNode.previousSibling.getElementsByTagName('a')[0].id ="active";
					}
			}
		}
		if(document.getElementById('left_control')){
		var mAs   = document.getElementById('left_control').getElementsByTagName('a');

			for(var menus = 0;menus<mAs.length;menus++){
					//if((mAs[menus].href.match('/'+filtered_location+'/i'))){ mAs[menus].id="active";} 
					this_loc = String(mAs[menus].href).split('/');
					if(this_loc[(this_loc.length)-1] == filtered_location){
								mAs[menus].id="active";			
					}
			}
		}