// JavaScript Document
jQuery(document).ready(function() {
 // Assign event to window.onload
     jQuery(window).load(function() {
      $("#navigation li a").each(function(){
       	 $(this).click(function(e){
			e.stopPropagation();
			 e.preventDefault();
      	  switchView($(this).attr("rel"));
		 } );
		});
     });
 });
function switchView(view){
$("#"+view).show();
if(view=="relatedVideos")
	$("#commentssection").hide();
else
    $("#relatedVideos").hide();

}
