$(function () {
	$('#s').focus(function () {
		var sqval = $(this).val();
		if (sqval == '') {
			$(this).parent().animate({
				width: "380px"
			});
			$(this).prev('label').fadeOut();
		}
	});
	$('#s').blur(function () {
		var sqval = $(this).val();
		if (sqval == '') {
			$(this).parent().animate({
				width: "260px"
			});
			$(this).prev('label').fadeIn();
		}
	});
	$('.rotational-images').innerfade({
		speed: 1000,
		timeout: 4000,
		containerheight: '280px'
	});
	$.each($('#navigation a'), function () {
		var link_title = $(this).attr('title');
		$(this).append('<span class="nvitem-desc">'+link_title+'</span>');
	});
});
