$(document).ready(function() {
	// add css rules for pseudo classes
	$('#banner ul li:last-child, #steps ul li:last-child a, #footer-nav ul li:last-child').css({
		'border-right':'0',
		'padding-right':'0'
	});
	$('#footer-nav ul li:first-child').css({
		'padding-left':'0'
	});
	
	// round corners on applicable elements
	$('.blurb').corners('8px top');
	$('a.design-button').corners('6px');
	//$('.item_btns a').corners('6px');
	
	// get target="_blank" equivalents
	$('a[rel="external"]').click(function(){
		this.target = "_blank";
	});
	
	// give first form element focus if applicable
	$(':text:visible:enabled:first').focus();
	
	// fix best sellers png on homepage
	$('#best-sellers').pngFix();
	
	// add the homepage shirt graphic
	$('body#home #content-container').after('<div id="home-design"></div>');
	
	// make homepage shirt graphic clickable
	$('body#home #content').addClass('pointer').click(function () {
		document.location.href='/design-an-ebtee';
	});
});