// Ramunas Geciauskas.
// image rollover and label slide effect. enjoy :)
$(function () {
	$('.nav li')
		.find('a')
		.append('<span class="hover" />').each(function () {
				var $span = $('> span.hover', this).css('opacity', 0);
				$(this).hover(function () {
					// on hover
					$(this).find('div').animate({marginLeft:'80px'},{queue:false,duration:200});
					$span.stop().fadeTo(500, 1);
				}, function () {
					// off hover
					$(this).find('div').animate({marginLeft:'60px'},{queue:false,duration:200});
					$span.stop().fadeTo(500, 0);
				});
			});

});
