// JavaScript Document

$(document).ready(function () {
							
	$("a#forgot").click(function () {
			alert("Contact relationship manager");					  
	});
	
	
	
	
		$('a#video1').click(function () {
									  
									  
				$('div#videoFrame').html('');			  
				$('div#videoFrame').load('videos/amienyaru-enobakhare.htm');					  
									  
		});
		
		$('a#video2').click(function () {
									  
				$('div#videoFrame').html('');					  
				$('div#videoFrame').load('videos/player.php?v=2&r='+Math.random());					  
									  
		});
		
		$('a#video3').click(function () {
									  
				$('div#videoFrame').html('');					  
				$('div#videoFrame').load('videos/player.php?v=3&r='+Math.random());					  
									  
		});
		
		$('a#video4').click(function () {
									  
				$('div#videoFrame').html('');					  
				$('div#videoFrame').load('videos/player.php?v=1&r='+Math.random());					  
									  
		});

		
			$("#loader2").ajaxStart(function(){ // fire if the ajax is started
				
				$("#movies").hide();
  				 $(this).show(); 
 			});
			
			$("#loader2").ajaxComplete(function(){ // fire if the ajax is completed
  				 $(this).hide(); 
				 $("#movies").show();
 			});

							
});
