$(document).ready(function(){
   $("#form-slide").hide();

   $("#form-btn-newspaper").click(function(){
     $("#marketing-type").val("Newspaper")
     $("#form-slide").animate({ height: 'show', opacity: 'show' }, 'slow');
     $("#changing-text").html("Please quote ad ref or publication name: ");
   });

   $("#form-btn-magazine").click(function(){
     $("#marketing-type").val("Magazine")
     $("#form-slide").animate({ height: 'show', opacity: 'show' }, 'slow');
     $("#changing-text").html("Please quote ad ref or publication name: ");
   });
   
   $("#form-btn-web").click(function(){
     $("#marketing-type").val("Web")
     $("#form-slide").animate({ height: 'show', opacity: 'show' }, 'slow');
     $("#changing-text").html("Please state site: ");
   });
   
   $("#form-btn-tv").click(function(){
     $("#marketing-type").val("TV")
     $("#form-slide").animate({ height: 'show', opacity: 'show' }, 'slow');
     $("#changing-text").html("Please state channel: ");
   });
   
   $("#form-btn-other").click(function(){
     $("#marketing-type").val("Other")
     $("#form-slide").animate({ height: 'show', opacity: 'show' }, 'slow');
     $("#changing-text").html("Please state: ");
   });

}); 

$(document).ready(function(){

   $("#form-btn-newspaper").mouseover(function(){
       $(this).css("cursor", "pointer")
   });
   
   $("#form-btn-magazine").mouseover(function(){
       $(this).css("cursor", "pointer")
   });
   
   $("#form-btn-web").mouseover(function(){
       $(this).css("cursor", "pointer")
   });
   
   $("#form-btn-tv").mouseover(function(){
       $(this).css("cursor", "pointer")
   });
   
   $("#form-btn-other").mouseover(function(){
       $(this).css("cursor", "pointer")
   });

}); 