 		var COOKIE_NAME = 'fadedotf';
        var options = {path: '/', expires: 100};
		
		function clear_window() {
            document.search_box.search_criteria.value="";
        }
        $(document).ready(
             function(){

                    $('.fade').innerfade({
                        speed: 1000,
                        timeout: 5000,
                        type: 'sequence',
                        containerheight: '229px'
                    });
					if ($.cookie(COOKIE_NAME) == ""){
						$.cookie(COOKIE_NAME, 'yes', options);
						$('#fade2')
						.animate({ color: "orange", fontSize: "9pt" }, 2000)
						.animate({ color: "yellow", fontSize: "9pt" }, 2000)
						.animate({ color: "rgb(227,47,28)", fontSize: "9pt" }, 2000);
					}
					else {
						$('#fade2').css('color', 'rgb(227, 47, 28)');
					}
            });
