$(function (){
	
	var autoHideBoxes = setInterval(function () {
		if ($('#notification_area').length <= 1) {
			clearInterval(autoHideBoxes);
		}
		hideNotificationBox();
	}, 10 * 1000);
	
	var autoClear = $('input.autoclear');
	
	autoClear.each(function() {
		var defaultValue = $(this).val();

		$(this).focus(function() {
			if ($(this).val() == defaultValue) {
				$(this).val('');
			}
		});
		
		$(this).blur(function() {
			if ($(this).val() == "") {
				$(this).val(defaultValue);	
			}
		});
	});
	
});

function hideNotificationBox () {
	$('#notification_area').find(":nth-child(1)").slideUp('fast', function() { $(this).remove(); } );
};

$(document).ready(function(){
    $('.banner-btm').flash(
        { src: '/images/banners/holiday_halloween_animationf.swf',
          width: 728,
          height: 90 }
    );
});