var Styleyes = {
	init: function(){
		Styleyes.drawBorders();
		Styleyes.swapImages();
		Styleyes.drawNav();
	},
	swapImages: function(){
		var home = '';
		if (typeof($("body.home")[0]) != 'undefined')
			home = '-home';
		var logo = $("<img src='images/logo" + home + ".gif'>");
		$('div#header h1').html(logo);
		$('h2').each(function(){
			var imgSrc = "images/headings/" + $(this).attr('class') + ".gif";
			$(this).html("<img src='" + imgSrc + "'>" );
		});
		$('#footnav a').html('<img src="images/shoe.gif" alt="shoe" />');
	},
	drawBorders: function(){
		// $('#wrap').wrapInner('<div id="b"></div>');
		$('#wrap').prepend('<div id="bt"></div>').append('<div id="bb"></div>');
	},
	drawNav: function(){
		$('#nav ul li').hover(function(){
			$('ul', this).css({left:'auto'});
		},function(){
			$('ul', this).css({left:'-999em'});
		});
	}
}
$(document).ready(Styleyes.init);