/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
 $(document).ready(function(){
    
    $("h1").css({'font-family' : 'Georgia', 'font-weight' : 'bold', 'color' : 'white', 'text-align' : 'center'});;
  });
  
  $(document).ready(function(){
    
    $("h2").css({'font-family' : 'Georgia', 'font-weight' : 'bold', 'color' : 'white', 'text-align' : 'center'});;
  });
	    $(document).ready(function(){
    
    $("h4").css({'font-family' : 'Georgia', 'font-weight' : 'bold', 'color' : 'white'});;
  });       

$(document).ready(function(){
    
    $("a").hover(function () {
      $(this).css({'background-color' : 'blue', 'font-weight' : 'bold'});
    }, function () {
      var cssObj = {
        'background-color' : ''
      }
      $(this).css(cssObj);
    });

  });
	           
   $(document).ready(function(){
    
    $("ul").css({'font-family' : 'Georgia', 'font-weight' : 'bold', 'color' : 'white'});;
  });


