///***** JavaScript: Image Preload *****///
if (window.document.images) {
    function doPreload() {
      var the_images = new Array('../images/logo.gif','../images/logo_sub.gif','../images/n11.gif','../images/n12.gif','../images/n21.gif','../images/n22.gif','../images/n31.gif','../images/n32.gif','../images/n41.gif','../images/n42.gif','../images/n51.gif','../images/n52.gif','../images/n61.gif','../images/n62.gif','../images/s_about11.gif','../images/s_about12.gif','../images/s_about21.gif','../images/s_about22.gif','../images/s_about31.gif','../images/s_about32.gif','../images/s_about41.gif','../images/s_about42.gif','../images/s_clients11.gif','../images/s_clients12.gif','../images/s_clients21.gif','../images/s_clients22.gif','../images/s_exciting11.gif','../images/s_exciting12.gif','../images/s_exciting21.gif','../images/s_exciting22.gif','../images/s_exciting31.gif','../images/s_exciting32.gif','../images/s_projects11.gif','../images/s_projects12.gif','../images/s_projects21.gif','../images/s_projects22.gif','../images/s_projects31.gif','../images/s_projects32.gif','../images/s_projects41.gif','../images/s_projects42.gif','../images/s_services11.gif','../images/s_services12.gif','../images/s_services21.gif','../images/s_services22.gif','../images/s_services31.gif','../images/s_services32.gif','../images/s_services41.gif','../images/s_services42.gif','../images/sub_didyouknow.gif','../images/sub_testimonial.gif','../images/title_about.gif','../images/title_accessible.gif','../images/title_bathroom.gif','../images/title_bio.gif','../images/title_contact.gif','../images/title_interior.gif','../images/title_kitchen.gif','../images/title_livingroom.gif','../images/title_mystory.gif','../images/title_news.gif','../images/title_ourclients.gif','../images/title_press.gif','../images/title_projects.gif','../images/title_projects_accessible.gif','../images/title_projects_bathrooms.gif','../images/title_projects_kitchens.gif','../images/title_projects_living.gif','../images/title_realtors.gif','../images/title_relocation.gif','../images/title_renovation.gif','../images/title_services.gif','../images/title_services_accessible.gif','../images/title_services_aging.gif','../images/title_services_build.gif','../images/title_services_builderd.gif','../images/title_services_furnishings.gif','../images/title_services_interior.gif','../images/title_services_relocation.gif','../images/title_services_renovation.gif','../images/title_suppliers.gif','../images/title_team.gif','../images/title_testimonials.gif','../images/title_unique.gif','../images/title_what.gif');
      preloadImages(the_images);
      }
    function preloadImages(the_images_array) {
    for(loop = 0; loop < the_images_array.length; loop++) {
      var an_image = new Image();
      an_image.src = the_images_array[loop];
      }
     }
    }

//	Pop-Up Window
//	*********************
	function popUP(this_pg) {
	var the_window = window.open(this_pg,'the_window','width=432,height=495,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,screenX=50pixels,screenY=50pixels');
	}


//	Larger Item View Window
//	*********************
	function lgrView(this_pg) {
	var the_window = window.open(this_pg,'the_window','width=472,height=400,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,screenX=50pixels,screenY=50pixels');
	}

//	Email Friend Window
//	*********************
	function emailFrnd(this_pg) {
	var the_window = window.open(this_pg,'the_window','width=432,height=495,toolbar=no,location=no,status=no,scrollbars=no,resizable=yes,screenX=50pixels,screenY=50pixels');
	}

//	Self Close
//	*********************
    function closeNow()	{
    window.close()
    }

//	Date Script
//	*********************
	var today = new Date();
	var day = today.getDate();
	var month = today.getMonth();
		function y2k(number) {
		  return (number < 1000) ? number + 1900 : number;
		}

		var year = y2k(today.getYear())
		if (month == "0")
		    month = "January";
	    else
		if (month == "1")
		    month = "February";
	    else
		if (month == "2")
		    month = "March";
	    else
		if (month == "3")
		    month = "April";
	    else
		if (month == "4")
		    month = "May";
	    else
		if (month == "5")
		    month = "June";
	    else
		if (month == "6")
		    month = "July";
	    else
		if (month == "7")
		    month = "August";
	    else
		if (month == "8")
		    month = "September";
	    else
		if (month == "9")
		    month = "October";
	    else
		if (month == "10")
		    month = "November";
	    else
		if (month == "11")
		    month = "December";

