/*-----------------------------------------
 
 copyright 2010 by opendo
 
 
 Author: Georg Paul
 
 Author URI: http://www.opendo.at
 
 -------------------------------------------*/



$(document).ready(function(){

	$('#accessibility .demo').bind('click', function(event){
		event.preventDefault();
		
		accessibilityDemo();
		
	})


		$('.boxgrid.captionfull').hover(function(){
			$(".cover", this).stop().animate({top:'0'},{queue:false,duration:160});
		}, function() {
			$(".cover", this).stop().animate({top:'183px'},{queue:false,duration:160});
		});


	//$('#countdown').countdown({until: new Date(2010, 1, 8, 12)});

	
});



function accessibilityDemo(){
	$('.hidden').removeClass('hidden');
	window.location.hash = '#top';
	
	
}

