 $(document).ready(function(){

$("#lang").toggle(
	function(){
		$("#langs").slideDown("fast");
		return false;
	},
	function(){
		$("#langs").slideUp("fast");
		return false;
	});
		 
$("#products").toggle(
	function(){
		$("#prods").slideDown("fast");
		return false;
	},
	function(){
		$("#prods").slideUp("fast");
		return false;
	});

$("#nav-comp").toggle(
	function(){
		$("#comps").slideDown("fast");
		return false;
	},
	function(){
		$("#comps").slideUp("fast");
		return false;
	});


// Find each <p> and add the read more link
   $(".m").each(function(i) {
     $(this).append( " <br /><a href=# class=readmore>More &raquo;</a> " );
   });

// on click, first hide this, then go two tags back to <em> and fade it in
$("a.readmore").click(function(){
	$(this).hide();
	$(this).prev().prev().slideDown("fast");
	return false;
	});

$("#left-col div").hide();
$("#right-col div").hide();

$("#left-col h2").toggle(
	function(){
		$(this).next().slideDown();
	},
	function(){
		$(this).next().slideUp();
	}
);

$("#right-col h2").toggle(
	function(){
		$(this).next().slideDown();
	},
	function(){
		$(this).next().slideUp();
	}
);

 });

