// -------- start of jQuery document.ready() ---------- //
  
$(document).ready(function() {
   
  //removing background etc. from last elements
  $("#footer li:last").css({background: 'none', border: 'none', paddingRight: '0'});  
  
  //some animations for bottom navigation
  $('#footer li a:not(.active)').hover(function() {$(this).animate({paddingTop: "3px"}, 100);}, function() {$(this).animate({paddingTop: "0px"}, 100);});
  
  //working with login inputs  
  $("#header fieldset form input:text").click(function() {
    $(this).attr({value: ""});
  });
  
  //working with contact inputs
  $("#content fieldset input:text").click(function() {
    $(this).attr({value: ""});
  });
  
  //column ul li
  $('#column ul li').prepend('- ')
  
  //fancybox
   $("#column blockquote a").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': false }); 
  
});
// -------- end of jQuery document.ready() ---------- //
