$(document).ready(function() {

	$("div#container").css("display", "none");
	//$("div#container").css("display", "block");
    $("div#container").fadeIn(1500);

		//resets the dotted horizontal line to DISPLAY:NONE on all the pages EXCEPT the pages that explicitly show it.

});

function browserTester(browserString) {
	return navigator.userAgent.toLowerCase().indexOf(browserString) > -1;
}
