// JavaScript Document

function redirect(){

	var getdate = new Date();
	var month = getdate.getMonth();
	
	switch(month){
		
		case 01:
		
			document.location = 'stvalentines-range.html';
			break;
			
		case 02:
		
			document.location = 'stvalentines-range.html';
			break;
			
		case 04:
		
			document.location = 'easter-range.html';
			break;
			
		case 05:
		
			document.location = 'national-doughnut-week.html';
			break;
			
		case 10:
		
			document.location = 'halloween-range.html';
			break;
			
		case 11:
		
			document.location = 'christmas-range.html';
			break;
			
		case 12:
		
			document.location = 'christmas-range.html';
			break;
			
		default:
		
			document.location = 'index.html';
		
	}
	
}
