
  jQuery(document).ready(function(){

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

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

