    $(document).ready(function() {
		//Drop Down Menu							   
        $('ul.sf-menu').superfish();
		//Corporate Partners Fader
		$('.fade').innerfade({
			speed: 1000,
			timeout: 8000,
			type: 'random_start'
		});
		//Right Side Last Div Border
		$('#MainContentBlockRightWrap div.MainContentBlockRightArea:last').css({border:'0'});
		
		//Gallery Tab
		$('#GalleryTabShell').tabs({ fxFade: true, fxSpeed: 'slow' });
		
		//LogIn Starts Current Sponsor
		 $('#CurrentSponsorFormArea').hide();
   			$('a#SponsorLogIn').click(function(){
			$('#CurrentSponsorFormArea').show('slow');
  		});
   $('a#LogInFormAreaCS').click(function(){
   		$('#CurrentSponsorFormArea').hide('slow');
		})
   
   		//LogIn Starts Scholar Sponsor
		 $('#SponsorFormArea').hide();
   			$('a#ScholarLogIn').click(function(){
			$('#SponsorFormArea').show('slow');
  		});
   $('a#LogInFormAreaScholar').click(function(){
   		$('#SponsorFormArea').hide('slow');
		})
   
  		//LogIn Starts Alumnus Sponsor
		 $('#AlumnusFormArea').hide();
   			$('a#AlumnusLogIn').click(function(){
			$('#AlumnusFormArea').show('slow');
  		});
   $('a#LogInFormAreaAlumnus').click(function(){
   		$('#AlumnusFormArea').hide('slow');
		})

   }); 
