/**
 * Handle overlay popups
 *
 * @created 2011-03-28
 * @author Dirk Bonhomme <dirk@inventis.be>
 */

/**
 * Set styles and show popup
 *
 */
$(document).ready(function(){

	// Set overlay to full height
	$('#popup').css('height', $(document).height());
	$('#popup').css('width', $('body').width()); //IE6

	// Handle popup close
	$('#popup, #popup a.close').click(function(){
		$('#popup').fadeOut();
	});
});
