var pageNotice={};

pageNotice.notices=[];

n={};
n.xhtml='<p style="color:#CC0000;border:1px solid #CC0000;padding:4px;font-size:90%;"><strong>Bank Holiday Closing</strong><br />Monday 31st August is a Bank Holiday, and the The London Information Office is closed. If you have a Sales enquiry or need to place an order on Monday 31st, please call our Edinburgh office on 0131 667 1000 (Monday 31st is not a Bank Holiday in Scotland).</p>';
n.startDate=new Date(2009,7,27,12,15,0,0);
n.endDate=new Date(2009,7,27,13,15,0,0);
n.precedingTagId='liosales_h4';
pageNotice.notices.push(n);

n={};
n.xhtml='<p style="color:#CC0000;border:1px solid #CC0000;padding:4px;font-size:90%;"><strong>Bank Holiday Closing</strong><br />Monday 31st August is a Bank Holiday, and the BGS Keyworth office is closed. Any online orders arriving after 12 noon on Friday 28 August will be dispatched on Tuesday 1st September. If you have a Sales enquiry or need to place an order on Monday 31st, please call our Edinburgh office on 0131 667 1000 (Monday 31st is not a Bank Holiday in Scotland).</p>';
n.startDate=new Date(2009,7,1,1,0,0,0);
n.endDate=new Date(2009,8,1,1,20,0,0);
n.precedingTagId='kwsales_h4';
pageNotice.notices.push(n);

pageNotice.init=function(){
	var i=0;
	var currentDate=new Date();
	var hasStarted=false;
	var hasExpired=false;
	if(pageNotice.notices.length > 0){
		for(i=0;i < pageNotice.notices.length;i++){
			hasExpired=false;
			if(currentDate > pageNotice.notices[i].endDate){hasExpired=true;};
			hasStarted=false;
			if(currentDate > pageNotice.notices[i].startDate){hasStarted=true;};
			if(hasStarted && !hasExpired){
				$("#" + pageNotice.notices[i].precedingTagId).after(pageNotice.notices[i].xhtml);
				};
			};
		};
	};
	
// fire initialisation onDomReady #################################
$(document).ready(pageNotice.init);
