// JavaScript Document

 
    $(document).ready(function(){
	
     $("#step1lnk").mouseover(function () {
  	 hide_all();
      $("#step1").show("slow");
	//  var t=setTimeout( "$('#step1').hide('slow')",5000);
     });
	 
	 $("#step2lnk").mouseover(function () {
	  hide_all();
      $("#step2").show("slow");
	//  var t=setTimeout( "$('#step2').hide('slow')",5000);
     });
	 
	 $("#step3lnk").mouseover(function () {
	  hide_all();
      $("#step3").show("slow");
	//  var t=setTimeout( "$('#step3').hide('slow')",5000);
     });
	 
	 $("#step4lnk").mouseover(function () {
	  hide_all();
      $("#step4").show("slow");
	//  var t=setTimeout( "$('#step4').hide('slow')",5000);
     });

	 // Mouseout 
	
	 
	 
	  $("#step1").mouseout(function () {
	  $("#step1").hide('slow');
	 });
	 
	 $("#step2").mouseout(function () {
	  $("#step2").hide('slow');
	 });
	 
	 $("#step3").mouseout(function () {
	  $("#step3").hide('slow');
	 });
	 
	 $("#step4").mouseout(function () {
	  $("#step4").hide('slow');
	 });
  });
 
 
 function hide_all()
 {
   $("#step1").hide('slow');
     $("#step2").hide('slow');
	   $("#step3").hide('slow');
	     $("#step4").hide('slow');
 }


function show_page(val)
{
	switch(val)
	{
		case 'step1':
			document.location.href='paladin_step1.html'
		break;
		case 'step2':
			document.location.href='paladin_step2.html'
		break;
		case 'step3':
			document.location.href='paladin_step3.html'
		break;
		case 'step4':   
			document.location.href=''
		break;
		case 'sol1':
			document.location.href='data_centers_nocs.html' 
		break;
		case 'sol2':
			document.location.href='defense_gov.html' 
		break;
		case 'sol3':
			document.location.href='energy_utilities.html' 
		break;
		case 'sol4':
			document.location.href='manufacturing.html' 
		break;
		case 'sol5':
			document.location.href='petrochemical.html' 
		break;
		case 'sol6':
			document.location.href='process_industries.html' 
		break;
		case 'sol7':
			document.location.href='publicvenues.html' 
		break;
		case 'sol8':
			document.location.href='semiconductors.html' 
		break;
		case 'page1':
			document.location.href='paladin_step2_page1.html'
		break;
		case 'page2':
			document.location.href='paladin_step2_page2.html'
		break;
		case 'page3':
			document.location.href='paladin_step2_page3.html'
		break;
		case 'page4':
			document.location.href='paladin_step2_page4.html'
		break;
		case 'page5':
			document.location.href='paladin_step2_page10.html'
		break;
		case 'page6':
			document.location.href='paladin_step2_page11.html'
		break;
		case 'page7':
			document.location.href='paladin_step2_page5.html'
		break;
		case 'page8':
			document.location.href='paladin_step2_page7.html'
		break;
		case 'page9':
			document.location.href='paladin_step2_page12.html'
		break;
		case 'page10':
			document.location.href='paladin_step2_page13.html'
		break;
		case 'page11':
			document.location.href='paladin_step2_page14.html'
		break;
		case 'page12':
			document.location.href='paladin_step2_page15.html'
		break;
		case 'page13':
			document.location.href='paladin_step2_page16.html'
		break;
		case 'page14':
			document.location.href='paladin_step2_page8.html'
		break;
		case 'page15':
			document.location.href='paladin_step2_page9.html'
		break;


	   
	}
}
