// JavaScript Document

var $j = jQuery;

function contentLeftHeight(){

	var _contentRightHeight = $j(".contentRight, .contentRightInquerito").height();

	$j(".contentLeft").animate({
		height: _contentRightHeight
	}, 'fast' );			

}



$j(function(){
	
	$j("#headerLeft").click(function(){
		window.open('/index.lasso','_self')
	});
	
	/**set height equal**/
		contentLeftHeight();
	/**set height equal**/


	/**hover inputs & textareas**/
	$j("input:text, input:password, textarea").hover(function(){
		$j(this).css('border', '1px solid #A0A0A0');
	}, function(){
		$j(this).css('border', '1px solid #C0C0C0');
	});
	/**hover inputs & textareas**/

});

