Computer on Modules

Computer on Modules
Questions?
Contact Form
Our Community
Call us in Seattle
+1 (800) 871-6550
/* */
jQuery(function ($)
$(function()
$('#popup').hide();
setTimeout(function()
$('#popup').show();
if (!$.cookie('contact_popup') ,15000);
);
// Toggle Panel and Set Cookie //
$('#questions').click(function()
$('#popup-form').slideToggle('fast', function()
if ($(this).is(':hidden'))
$.cookie('contact_popup', 'closed');
else
$.cookie('contact_popup', 'open');
);
);
);






