
$(document).ready(function() {
  
    
	
   //for home page
      $("#Image1").hover(
                 function() {
                    
					 $( "#slideRed" ).slideDown('slow');
                     
               
                },
                function() {
				     $( "#slideRed" ).slideUp('slow');
                     
                   
                });
				
				$("#Image2").hover(
                 function() {
                    
					 $( "#slideBlue" ).slideDown('slow');
                     
               
                },
                function() {
				     $( "#slideBlue" ).slideUp('slow');
                     
                   
                });
     
	 //for about page
	 
	 //Default Action
	$(".body_right").hide(); //Hide all content
	$("ul.menu li:first").addClass("active").show(); //Activate first tab
	$(".body_right:first").show(); //Show first tab content
	
	//On Click Event
	$("ul.menu li").click(function() {
		$("ul.menu li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".body_right").hide(); //Hide all tab content
		var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
		$(activeTab).fadeIn(); //Fade in the active content
		return false;
	});
     
	 
	 //Video setup 
	//VideoJS.setup();
     
	   });
