

$(function(){
	
	// replace the input.form-submit element with <a>
	var elem = $('.head .form-submit');
	elem.replaceWith('<a href="#" id="subscribe-form-submit">'+elem.val()+'</a>');
	$('#subscribe-form-submit').click(function(){
		$(this).parent().parent().submit();
		return false;
	});
	
	// make column blocks links
	var statusMsg = '';
	$('.content .page .column:has(h2>a)').css({cursor:'pointer'}).hover(
		function(){
			statusMsg = window.status;
			window.status = $(this).find('h2>a').attr('href');
		},
		function(){
			window.status = statusMsg;
		}
	).click(function(){
		window.location = $(this).find('h2>a').attr('href');
	});
	
});

