// Image Rollover
$(function() {
    $('img.hover').hover(function() {
        $(this).attr('src', $(this).attr('src').replace(/_orig/i,'_hover'));
    }, function() {
        $(this).attr('src', $(this).attr('src').replace(/_hover/i,'_orig'));
	});
});

// Preload Images
function preload(imgArray) {
	$(imgArray).each(function() {
		$('<img />')[0].src = this;
	});
}
