jQuery(document).ready(function() {

	$.cookie('cookie_test', 'cookie_value', { path: '/' });
	var retVal = ("cookie_value"!= $.cookie('cookie_test'));
	$.cookie('cookie_test', null);

	if (retVal) {
	    $('#java_cookie').show();
	}
});

