$(document).ready(function(){ $('#sidebar h2:first').css ( 'margin-top', '0'); $('.cols li').click(function(){  window.location=$(this).find("a").attr("href");return false; }); $('.cols li').addClass('col_pad'); $('.cols li:nth-child(3n)').removeClass('col_pad'); $('input[type="submit"]').addClass("btn_form"); $('input[type="text"]').addClass("idleField"); $('input[type="text"]').focus(function() { $(this).removeClass("idleField").addClass("focusField"); if (this.value == this.defaultValue){ this.value = ''; } if(this.value != this.defaultValue){   this.select();  } }); $('input[type="text"]').blur(function() { $(this).removeClass("focusField").addClass("idleField"); if ($.trim(this.value) == ''){  this.value = (this.defaultValue ? this.defaultValue : ''); } }); });  
 