$(function() {
	var drawer = $("#drawer");
	if(drawer.html() != null && drawer.html().replace(/\s*/g, '') != '') {
		drawer.slideDown(function()  {
			// colored flash effect
			//drawer.css("backgroundColor", "#229");
			//setTimeout(function() { drawer.css("backgroundColor", "#fff"); }, 5000);
			setTimeout(function() {drawer.slideUp(); }, 5000);
		});
	}
	$("img[rel]").overlay();
});