$(document).ready(function() {
var open = 0;
//networking popup
$('#kq_holder').click(function() {
	if(open == 1){
		$('#website').fadeOut('fast');
		$('#branding').fadeOut('fast')
		$('#networking').fadeOut('fast');
		}
		$('#seo').fadeIn('slow');
		open = 1;
		
});

$('.close_btn').click(function() {
		$('#seo').fadeOut('slow');
		open = 0;
});

//websites popup
$('#balloon_holder').click(function() {
	if(open == 1){
		$('#networking').fadeOut('fast');
		$('#branding').fadeOut('fast');
		$('#seo').fadeOut('fast');
		}
		$('#website').fadeIn('slow');
		open = 1;
});

$('.close_btn').click(function() {
		$('#website').fadeOut('slow');
		open = 0;
});

//branding popup
$('#billboard_holder').click(function() {
	if(open == 1){
		$('#website').fadeOut('fast');
		$('#networking').fadeOut('fast');
		$('#seo').fadeOut('fast');
		}
		$('#branding').fadeIn('slow');
		open = 1;
});

$('.close_btn').click(function() {
		$('#branding').fadeOut('slow');
		open = 0;
});

//seo popup
$('#safari_holder').click(function() {
	if(open == 1){
		$('#website').fadeOut('fast');
		$('#seo').fadeOut('fast');
		$('#branding').fadeOut('fast');
		}
		$('#networking').fadeIn('slow');
		open = 1;
});

$('.close_btn').click(function() {
		$('#networking').fadeOut('slow');
		open = 0;
});

});

