
$(document).ready(function(){
		var pro = $("#jjj").html();
		document.getElementById("kkk").innerHTML = pro;				   
		$("#scroll_Frame").find("img").each(function(i){
			$(this).mouseover(function(){
				var pname = $(this).attr("name");					   
				$(this).attr("src","latestproject-images/"+pname+"2.jpg");
			});
			
			$(this).mouseout(function(){
				var pname = $(this).attr("name");					   
				$(this).attr("src","latestproject-images/"+pname+"1.jpg");
			});
		});			
	
	var intId = setInterval(SrcollMe,5000);	
	
	function SrcollMe(){

		var	DT = $("#jjj").attr("offsetTop");
		var	DH = $("#jjj").attr("offsetHeight");
		if(DT==0){					
		document.getElementById("kkk").style.top=-DH+"px";
		}
		if(DT==DH){
		document.getElementById("jjj").style.top=-DH+"px";	
		}
		$("#kkk").animate({"top": "+=108px"}, "slow", "easeOutBack");
		$("#jjj").animate({"top": "+=108px"}, "slow", "easeOutBack");

	}	
 });
