  jQuery(document).ready(function(){
    
	jQuery(".link-dedicatedgold").click(function() {
		
		jQuery(".div-platinum-comp").fadeOut("fast", function() {
			jQuery(".div-gold-comp").fadeIn("slow");
			jQuery("#begin").slideUp("slow");
		});
		
	});

	
		jQuery(".link-dedicatedplat").click(function() {
		
		jQuery(".div-gold-comp").fadeOut("fast", function() {
			jQuery(".div-platinum-comp").fadeIn("slow");
			jQuery("#begin").slideUp("slow");
		});
		
	});
  });
