$(function(){
	$("input[type='text'],input[type='password'],textarea").css({"border":"1px solid #cccccc","padding":"2px"});
	$("input[type='text'],input[type='password'],textarea").focus(function(){
		$(this).css({"border":"1px solid #003768"}); 
	});
	$("input[type='text'],input[type='password'],textarea").blur(function(){
		$(this).css({"border":"1px solid #cccccc"});
	});
	$("textarea").autogrow();
	$(".validateMe").validate();
	var x = $(".left_pic").attr("alt");
	$(".left_pic").wrap('<div class="t2_left"></div>').after("<p>"+x+"</p>");
});
function thickboxShow(link){
	tb_show(null,link+"?KeepThis=true&TB_iframe=true");
};