/*
 * 
 * jQuery Browser detect code v1.1 (jQBrowserDC.js)
 *
 * Author:aFu1986(Made in Taiwan), Daniel Chou
 * Date: 2009-12-18 17:22:21 +0800
 *
 * licensed under a Creative Commons Attribution-Share Alike 3.0 License
 * (http://creativecommons.org/licenses/by-sa/3.0/)
 *
 */

if ($.browser.msie && (parseFloat($.browser.version) < 7)) {
	$(function(){
		$("#bowser_info").fadeIn("slow");
	});
}

$(function(){
	$("#close_btn").click(function(){
		$("#bowser_info").fadeOut("slow");
		});
});