$(document).ready(function(){
$("input:text, input:password, textarea").addClass("idle");
$("input:text, input:password, textarea").focus(function(){
$(this).addClass("activeField").removeClass("idle");
}).blur(function(){
$(this).removeClass("activeField").addClass("idle");
});

function resizeContentBox(){
$("#leftborder").each(function(){
var offset=$(document).height()
offset-=$(this).offset().top;
offset-=parseInt($(this).css('paddingTop'));
offset-=parseInt($(this).css('paddingBottom'));
offset-=35;
$(this).css(jQuery.browser.msie&&jQuery.browser.version<7?'height':'minHeight',offset+'px');
if($.browser.msie){$(this).css('zoom',1);}});
}
resizeContentBox();
});

function show(a)
{
$("div.hidde").hide(100);
var x =  $("div#show_"+a);
if(x.is(":hidden")) x.show(700);
}
