$(document).ready(function() {
//graphics
$('a.contact').click(function() {
$('#dashboard').slideDown(400);
$('.gray').fadeIn(200);
$('.slideshow, #buyerVideo, #sellerVideo').fadeOut(200);
return false;
 });

$('.gray, a.close, #OptInButton').click(function() {
$('#dashboard').slideUp(250);
$('.gray').fadeOut(100);
$('.slideshow, #buyerVideo, #sellerVideo').fadeIn(100);
return false;
 });

});
