// JavaScript Document

$(document).ready( function(){
$('a').click(function(){
if($(this).attr('id')=='needVsCom') {
	
	$("#needVsComStatus").append('<img src="../images/loading.gif" /><p>Loading...</p>');
	$("#needVsComPop").load("needVsCompany.html", function(response, status, xhr) {
	alert('bb');														 
	$('#needVsComStatus').remove('p');
	$('#needVsComStatus').remove('img');
	});
	popup('needVsComMod');
}
	else if($(this).attr('id')=='needVsComClose') {
		popup('needVsComMod');
	}

	});
});

