// JavaScript Document
$(document).ready(function(){
	
		$(".titlebox").hide();
		
		$(".ctrl").bind("mouseover",function(){
		$(".titlebox").hide();
		var n=$(this).prevAll().length;
		//alert(n)
		
		$(".titlebox:eq("+n+")").css("left","600px")
		$(".titlebox:eq("+n+")").css("top","38px")
		$(".titlebox:eq("+n+")").show("fast");
		//},function(){
		
			//$(".titlebox").hide();
		
		//},function(){
		//$(".titlebox").hide();
		})
		$(".ctrl").bind("mouseout",function(){
		
			$(".titlebox").hide("fast");
		
		})
	
	})
