var vPrint = {
	
	init: function(){
		vPrint.currentPage();
		vPrint.formAction();
	},
	
	currentPage: function(){
		//var loc = document.body.identify();
	//	loc = loc.split('-');
		//loc = loc[0];
	//	$(loc).addClassName('active');
		
		var loc = window.location.pathname;

		switch(loc){
			
			case '':
				$('about').addClassName('active');
				break;
			
			case '/index-wc.php':
				$('about').addClassName('active');
				break;
			
			case '/prizes.php':
				$('prizes').addClassName('active');
				break;
				
			case '/winners.php':
				$('winners').addClassName('active');
				break;
			
		}

	},
	
	formAction: function(){
		$('special-day').observe('change', function(){
			if($(this).getValue() == "The date's set!"){
				$('date').removeClassName('disabled');
				$('date-1').enable().focus();
				$('date-2').enable();
				$('date-3').enable();
			}else{
				$('date').addClassName('disabled');
				$('date-1').disable();
				$('date-2').disable();
				$('date-3').disable();
			}
		});
	}
	
}

document.observe('dom:loaded', function(){
	
	vPrint.init();

});
