function ehm_bye (){
	$("div#ehm_box").hide("blind", { direction: "vertical" }, 1000);
}


// set cookie
$(function() {
	$('div.ehm a').eq(0).click(function() {
		$.cookie('ideapaint_ehm', 'ehmclose', { expires: 30 });
	});
});

// get cookie
$(function() {
	$('div.ehm a').eq(2).click(function() {
		alert($.cookie('ideapaint_ehm'));
	});
});



$(document).ready(function() {

if ($.cookie('ideapaint_ehm')=='ehmclose')
{ $("div#ehm_box").hide(); }

});