// JavaScript Document
 /*************  AUTHORS ****************
Sheela V Surisetty 
Web Developer/Designer 
surisettysh@gmail.com 
Phone: 315-212-7004
**************************************/
	var dateArray = new Array('', '1/20/2010', '1/21/2010', '1/22/2010', '1/23/2010', '1/24/2010', '1/25/2010', '1/26/2010', '1/27/2010', '1/28/2010', '1/29/2010','1/30/2010', '1/31/2010', '2/1/2010', '2/2/2010', '2/3/2010', '2/4/2010', '2/5/2010', '2/6/2010', '2/7/2010', '2/8/2010', '2/9/2010', '2/10/2010', '2/11/2010', '2/12/2010', '2/13/2010', '2/14/2010', '2/15/2010', '2/16/2010'); 
				var flag = "false";
                var currentDate = new Date();
                var month = currentDate.getMonth()+1 ;
                var day = currentDate.getDate();
                var year = currentDate.getFullYear();
                var currDate = month + "/" + day + "/" + year;
                //alert(currDate);
                //alert(dateArr[1]);
                for(var k=1; k<=28; ++k)
                {
                    if (currDate == dateArray[k])
                    {
						
                        document.writeln(k);
						flag = "true";
                    }
                }
				if(flag == "false")
				{
                        document.writeln("0");
				}
