$(function() {
	$('a.btnReplace').css('visibility', 'visible');
	$('input.btnReplace').hide();
	$('#onlineDemo label').labelOver();

	var $currentTitle = $('#hdr h2').html();
	$('#hdr a').hover(
		function() {
			$('#hdr h2').html($(this).attr('title'));
		},
		function() {
			$('#hdr h2').html($currentTitle);
		}
	);
});