 $(document).ready(function() {
   $('#web-design-link').click(function(){
     $('#web-design').slideDown('slow')

   });
   $('#web-development-link').click(function(){
     $('#web-development').slideDown('slow')

   });
   $('#graphic-design-link').click(function(){
     $('#graphic-design').slideDown('slow')

   });
   $('#cms-link').click(function(){
     $('#cms').slideDown('slow')

   });
   $('#seo-link').click(function(){
     $('#seo').slideDown('slow')

   });
   $('#x-link1').click(function(){
     	$('#x-marks-the-spot').fadeOut('slow')
    	$('#web-design').fadeOut('slow')
     return false;
   });
   $('#x-link2').click(function(){
     	$('#x-marks-the-spot').fadeOut('slow')
     	$('#web-development').fadeOut('slow')

     return false;
   });
   $('#x-link3').click(function(){
     	$('#x-marks-the-spot').fadeOut('slow')
     	$('#graphic-design').fadeOut('slow')

     return false;
   });
   $('#x-link4').click(function(){
     	$('#x-marks-the-spot').fadeOut('slow')
     	$('#cms').fadeOut('slow')
     return false;
   });
   $('#x-link5').click(function(){
     	$('#x-marks-the-spot').fadeOut('slow')
     	$('#seo').fadeOut('slow')

     return false;
   });
  });