/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function(){
	//ha a 3 kép közül vmelyik fölé viszem az egeret akkor a todo h2-ben megjelenjen a link szövege
	$('.about ul li a').bind('mouseenter',function(){
		$('#todo').html($(this).text());
	})
	$('.about ul li a').bind('mouseleave',function(){
		$('#todo').html('');
	})
})
