$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
//	$("a").click(function(){
//		$(this).blur();
//	});
	
	//When mouse rolls over
	$("div[id='section2_mid']").click(function(){
	    var bg = $("#netreplistbg");
        bg.fadeTo(0, 0.66);
        bg.fadeIn("fast");
        var body = $("#netreplist");
        body.fadeTo(0, 1);
        body.fadeIn("slow");
        //$("#winiframe").fadeIn("slow");
		//$("#netreplistbg").show();
	});
	
	//When mouse is removed
	$("div[id='netreplistbg']").click(function(){
		$("#netreplistbg").hide();
		$("#netreplist").hide();
	});
	
});