/*
$(document).ready(function() {
	// TODO - CJ - Image Submit Hover. This can be done better with pure CSS.
	// http://www.ukthoughts.co.uk/journal/css-submit-buttons
	$('.image-submit').mouseover(function(){
		orig = $(this).attr('src');
		replace = orig.split('.', 1) + '-over.gif';
		$(this).attr('src', replace);
	}).mouseout(function() {
		$(this).attr('src', orig);
	});
});
*/