//Show n Hide for sweb210 FAQ

  $(function()
			{
				$("#content1, #content2, #content3").hide();
				$(".expand_contract").click(showMe);
				
				
								
			});
			
			
		function showMe () {
		   		var id = $(this).attr("href");
				
			
			if($(id).is(":visible"))
			{
				$(id).slideToggle(750);
				$(this).html("Read More");
								
				
				
			}
			else
			{
				$(id).slideToggle(750);
				$(this).html("Read More");
				
				
			}
			
			return false;	
            	}
