$(document).ready(function(){
	
	$('.stumbler').remove();
	
	$("img.popup").each(function(i){
		$(this).wrap('<a class="thickbox" title="'+this.alt+'" href="'
		+this.src.replace('lores','hires')+'"><'+'/a>');
	});
	
	$("#completely-non-specific-element-number-one")
		.css('cursor','pointer')
		.click(function(){
			document.location = "/"
		});
	
});