//WordPrezzie theme code
$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#drawer').hide();

// toggle the theme draw open and closed on click
	$('img#drawer-button').toggle(function(){
		$(this).attr("src","http://wordprezzie.com/wp-content/themes/wordprezzie/images/close-drawer.gif");
		$('#drawer').toggle(300);
		return false;
	},function(){
		$(this).attr("src","http://wordprezzie.com/wp-content/themes/wordprezzie/images/click-to-see-more.gif");		
		$('#drawer').toggle(300);
		return false;
	});	
});