/**
 * @author Ashnur
 */
$().ready(function() {

	var ltie7 = $.browser.msie && /MSIE\s(5\.5|6\.)/.test(navigator.userAgent);
	var ie7 = $.browser.msie && /MSIE\s(7\.)/.test(navigator.userAgent);

	var url = document.location ;

	/*
	var _pInfoTableBody = function() {
	    var t = $('#prospectInfo .container table tbody');
	    _pInfoTableBody = function() {
	        return t;
	    };
	    return _pInfoTableBody();
	};*/
	
	
	$(".startCalendar + input").datepicker({}).attr("readonly", "readonly");
	
	if(ie7){
	
		$(".startCalendar").click(function(){$(this).next('input').datepicker('show')});	
	
	}
	
	if(ltie7){
		
		$(".startCalendar").click(function(){$(this).next('input').datepicker('show')});
		

	}
	
	
});
	


