
	// we're relying on jquery here so it'd better be included somewhere on the site before this script is loaded!

jQuery(document).ready(function() {
	jQuery('.tx_browserupdatehint_pi1_hidebar').click(function() {
		jQuery('.tx-browserupdatehint-pi1').animate({
			'height':0+'px',
			'opacity':0
		});

		jQuery(this).hide();

		createCookie('browserupdatehint', 'ok', 1);

		return false;
	});
});

