// JavaScript Document

      jQuery(document).ready(function($) {
        $(".tweet").tweet({
          join_text: "auto",
          username: "offspring",
          avatar_size: 27,
          count: 3,
          auto_join_text_default: "", 
          auto_join_text_ed: "",
          auto_join_text_ing: "",
          auto_join_text_reply: "",
          auto_join_text_url: "",
          loading_text: "Loading Tweets......."
        });
      })      

function popup(sw) {
if (sw == 2) {
// Show popup
document.getElementById('blackout2').style.visibility = 'visible';
document.getElementById('photopopup').style.visibility = 'visible';
document.getElementById('blackout2').style.display = 'block';
document.getElementById('photopopup').style.display = 'block';
} else if (sw == 3) {
document.getElementById('blackout2').style.visibility = 'visible';
document.getElementById('videopopup').style.visibility = 'visible';
document.getElementById('blackout2').style.display = 'block';
document.getElementById('videopopup').style.display = 'block';
}
else {
// Hide popup
document.getElementById('blackout2').style.visibility = 'hidden';
document.getElementById('photopopup').style.visibility = 'hidden';
document.getElementById('videopopup').style.visibility = 'hidden';
document.getElementById('blackout2').style.display = 'none';
document.getElementById('photopopup').style.display = 'none';
document.getElementById('videopopup').style.display = 'none';
}
}

function photo() {
popup(2);

}

function video() {
popup(3);

}

function DoAllvid() {
popup(0);
hidecommentvid();

}

function DoAllphoto() {
popup(0);
hidecommentphoto();

}

function showcommentvid() {
	document.getElementById('videopopup').style.overflow = 'visible';
	document.getElementById('commentvid').style.visibility = 'hidden';
	document.getElementById('commentvid').style.display = 'none';
	document.getElementById('hidecommentvid').style.visibility = 'visible';
	document.getElementById('hidecommentvid').style.display = 'block';


	
}

function hidecommentvid() {
	document.getElementById('videopopup').style.overflow = 'hidden';
		document.getElementById('hidecommentvid').style.visibility = 'hidden';
	document.getElementById('hidecommentvid').style.display = 'none';
	document.getElementById('commentvid').style.visibility = 'visible';
	document.getElementById('commentvid').style.display = 'block';
	
}

function showcommentphoto() {
	document.getElementById('photopopup').style.overflow = 'visible';
	document.getElementById('commentphoto').style.visibility = 'hidden';
	document.getElementById('commentphoto').style.display = 'none';
	document.getElementById('hidecommentphoto').style.visibility = 'visible';
	document.getElementById('hidecommentphoto').style.display = 'block';


	
}

function hidecommentphoto() {
	document.getElementById('photopopup').style.overflow = 'hidden';
		document.getElementById('hidecommentphoto').style.visibility = 'hidden';
	document.getElementById('hidecommentphoto').style.display = 'none';
	document.getElementById('commentphoto').style.visibility = 'visible';
	document.getElementById('commentphoto').style.display = 'block';
	
}

