// JavaScript Document
// starting the script on page load
$(document).ready(function(){
	var target = $("#description");
	target.html('<div class="ajaxloader"><p><img src="projects/icons/loader_0.gif"/> loading...</p></div>');
	target.load("projects/incl_contents/repetitionr.php", {}, function(){
		target.css({display:'none'}).fadeIn("slow");
	});
	tooltip();
	loadcontent();
});

this.loadcontent = function(){
$("#image li").click(function(){
	var path = $(this).find('a').attr("href");
	var target = $("#description");
	target.html('<div class="ajaxloader"><p><img src="projects/icons/loader_0.gif"/> loading...</p></div>');
	target.load(path, {}, function(){
		target.css({display:'none'}).fadeIn("slow");
		});
	return false;
	});
}

this.tooltip = function(){	
	/* CONFIG */		
		xOffset = 10;
		yOffset = 20;		
		// these 2 variable determine popup's distance from the cursor
		// you might want to adjust to get the right result		
	/* END CONFIG */		
	$("#image img").hover(function(e){											  
		this.t = this.title;
		this.title = "";									  
		$("body").append("<p id='tooltip'>"+ this.t +"</p>");
		$("#tooltip")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");		
    },
	function(){
		this.title = this.t;		
		$("#tooltip").remove();
    });	
	$("#image img").mousemove(function(e){
		$("#tooltip")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};