function blockError(){return true;}
window.onerror = blockError;

$(document).ready(function(){
	if ($.browser.msie && $.browser.version <= 7) {
	  $('.login-links li:last-child').css('padding-right','0px');
	}
	if ($.browser.msie && $.browser.version == 6) {
	  $('.leftcol-toplinks li:nth-child(2n)').css('margin-right','0px');
	}
});


function thisfocus(el, text) {
   if($(el).val() == text) {
      $(el).val('');
      $(el).css('color','#343434').css('font-style','normal');
   }
}
function thisblur(el, text) {
   if($(el).val() == '') {
      $(el).val(text);
      $(el).css('color','#d3c7c2').css('font-style','italic');
   }
}


