$(document).ready(function() {
						   
	$('#description-marciel a').click(function(){
		$("div.more-info-marciel").show("slow",hideLoader());
		function hideLoader() {
			$("a.launch-marciel").fadeOut('slow');
		}
	});
	
	$('#description-crawford a').click(function(){
		$("div.more-info-crawford").show("slow",hideLoader());
		function hideLoader() {
			$("a.launch-crawford").fadeOut('slow');
		}
	});
	
	$('#description-graef a').click(function(){
		$("div.more-info-graef").show("slow",hideLoader());
		function hideLoader() {
			$("a.launch-graef").fadeOut('slow');
		}
	});	
	
	$('#description-junger a').click(function(){
		$("div.more-info-junger").show("slow",hideLoader());
		function hideLoader() {
			$("a.launch-junger").fadeOut('slow');
		}
	});	
	
	$('#description-kahhan a').click(function(){
		$("div.more-info-kahhan").show("slow",hideLoader());
		function hideLoader() {
			$("a.launch-kahhan").fadeOut('slow');
		}
	});	
	
	$('#description-simon a').click(function(){
		$("div.more-info-simon").show("slow",hideLoader());
		function hideLoader() {
			$("a.launch-simon").fadeOut('slow');
		}
	});		
	
});
								 
