// JavaScript Document

$(document).ready(function(){

		
		/*---------------------------- Scripts for admin and user pages --------------------*/
				
		if( $.browser.msie )
		{
				// fix "#wrapper" min-width in IE 
				var wrapperWidth = eval( $("#wrapper").css('width').substr(0, $("#wrapper").css('width').length - 2 ) )
						
				if( wrapperWidth < 920 ) 
							$("#wrapper").css('width','962px');
				else
							$("#wrapper").css('width','98%');
		}
		
		/*-------------- Tables ----------------------------------------------*/
				
		$("table.motgageRates tbody tr:nth-child(odd)").addClass('odd');
				
				
		/*--------------- Forms ----------------------------------------------*/
				
		$('INPUT.hint').bind('click', function(){
				 this.value = "";
				 this.className = this.className.replace(/hint/,"");
				 $(this).unbind('click');
		});

});
