/*
 * Image preload
 */

$(document).ready(function() {
    // image replacement
	if($('#premier')[0].offsetWidth == 226) { // if images are enabled
		$('h1.header').each(function() {
			string = $(this).text();
			filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
			$(this).html('<img src="images/' + filename + '.gif" alt="' + string + '" />');
		});
		$('h2.header').each(function() {
			string = $(this).text();
			filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
			$(this).html('<img src="images/' + filename + '.gif" alt="' + string + '" />');
		});
		$('h3.header').each(function() {
			string = $(this).text();
			filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
			$(this).html('<img src="images/' + filename + '.gif" alt="' + string + '" />');
		});
	}

});