// this file adds some visual fluff to tastemakers
// this should be expanded and played with

// make sure everything excecutes after page load
$(function() {
	// only excecute js if on the correct page
	if ($('#new')) {
		$('#new').parent().hide();
		$('#new').parent().delay(1200).slideDown('fast');
	}
});
