jQuery.noConflict();  
jQuery(document).ready(function()	
{
	jQuery(".thebody").hide();
	jQuery(".column1-unit .click p")
    .prepend("<p class='readbody' align='right'><a href='' title='Read the article'>Read More/View Less [+/-]</a></p>");

	jQuery(".actions p.readbody a").click(function(event){
		jQuery(this).parents("div").prev(".thebody").slideToggle("slow");
       	// Stop the link click from doing its normal thing
       	return false;
	});
		
	jQuery(".title").click(function(){
		jQuery(this).siblings(".thebody").toggle("slow");return false;
    });
	
	
//Product Features Bar	
	jQuery('div.hide').hide();
	jQuery('#one.hide').show();
	jQuery('div.subcontent-unit-border-blue h1').click(function(event){											 
		jQuery(this).next('div.hide').slideToggle('slow')
		.siblings('div.hide:visible').slideUp('slow')	
	});
//Glossary Bar
	jQuery('div.glossary dd').hide();
	jQuery('div.glossary dt').click(function(){											 
		jQuery(this).next('dd').slideToggle('slow')
		.siblings('dd:visible').slideToggle('slow')	
	});

});

   function viewMore (id) {
   var a = document.getElementById(id);
   if (a.className=="popshow") {
   a.className="pophide";  } else {
   a.className="popshow";  } }
