/*
		IJSBOERKE IJssnoetactie 
		ijssnoetactie.js
*/

/*
*	 font replacment
*/

Cufon.replace('div#overlay-ijssnoetactie h2');

/*
*	 overlay
*/

$(document).ready(function(){
		$.fn.showOverlay = function () {
			 $('.overlay-background').css({'opacity':0}).show().animate({'opacity':0.3},1400);
			 $('#overlay-ijssnoetactie').css({'top':'-700px'}).animate({top:'70px'}, 800, 'easeOutBounce');
		}
		$.fn.hideOverlay = function () {
			 $('.overlay-background').remove();
			 $('#overlay-ijssnoetactie').remove();
		}
		$('#overlay-ijssnoetactie .overlay-close').click($.fn.hideOverlay);
		
		// show overlay onload
		setTimeout($.fn.showOverlay,300);
		
});
