$(document).ready(function()
{	$("a[rel^='lightbox']").prettyPhoto()

	$(this).delay(2000,function()
		{	$('#edu_hp').fadeIn(1000, function() {
		});
	});
	
	
	$("#edu_hp_close").click(function () {
		$('#edu_hp').fadeOut(1000, function() {
		});
	});
	
	// TABY
	$("#tabs img").mouseenter(function(){
			var child = $(this); 
			child.animate ({
				"margin-top": "0"
			}, 200);
		}).mouseleave(function(){
			var child = $(this); 
			child.animate ({
				"margin-top": "4"
			}, 200);
		});

});