jQuery(document).ready(function(){
	function suitReplace(regExp,newString) {
		var contentdiv = document.getElementById("content").innerHTML;
		contentdiv = contentdiv.replace(regExp,newString);
		document.getElementById("content").innerHTML = contentdiv;
	}
	suitReplace(/ of Clubs/g,'<img title="of Clubs" src="http://www.floptastic.co.uk/wp-content/uploads/clubs.gif" alt="of Clubs" width="13" height="14" />');
	suitReplace(/ of Diamonds/g,'<img title="of Diamonds" src="http://www.floptastic.co.uk/wp-content/uploads/diamonds.gif" alt="of Diamonds" width="13" height="14" />');
	suitReplace(/ of Hearts/g,'<img title="of Hearts" src="http://www.floptastic.co.uk/wp-content/uploads/hearts.gif" alt="of Hearts" width="13" height="14" />');
	suitReplace(/ of Spades/g,'<img title="of Spades" src="http://www.floptastic.co.uk/wp-content/uploads/spades.gif" alt="of Spades" width="13" height="14" />');
});
