
function swap( fn, w, h ) {
	var e = $( "h2#" + fn.substr( 0, fn.length - 4 ) );
	e.text( " " );
	e.css( "background-image", "url(/swap-images/" + fn + ")" );
	e.css( "width", w );
	e.css( "height", h );
}

$( document ).ready( function () {
	swap( "cash-back.gif", 225, 60 );
	swap( "dine-at-home-with-tigerthai.gif", 216, 17 );
	swap( "earn-rebates.gif", 161, 19 );
	swap( "enter-to-win.gif", 149, 17 );
	swap( "favorite-recipes.gif", 190, 19 );
	swap( "post-your-original-recipe.gif", 182, 23 );
	swap( "post-your-recipe-ideas.gif", 182, 23 );
} );
