$(function(){	// shorthand for $(document).ready() BTW	
	
	$(".welcome p").not(".lead").hide();
		
	$(".welcome p").not(".lead").before("<a href='#' class='clickmore'>Read more &#62;</a>");

	$(".clickmore").click(function(){
		$(this).hide("fast",function(){
			$(this).next().slideDown("slow");
		});
		return false;
	});
	
	$("#headerbanner").jqmedia({
		//src: "gui/home/dm_banner_2009_06.swf",
		src: "gui/home/dm_banner_2010_01.swf",
		width: 343,
		height: 39,
		alt: '<img src="gui/DM1110808-BANNER-02a.gif" width="343" height="39" />'
	});
	
});