function SelectAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).select();
}

$(function(){

	$(window).load(function(){
		$('h1, h2, label, p').show();
	});
	
});


$(document).ready(function(){
	
	$('h1, h2, label, p').show();
	
	var containerHeight = $('#container').height();
	$('#container').css('height',containerHeight);

});


