/* $Id: index.js,v 1.9 2011/12/06 13:54:05 sap Exp $ */


$(document).ready(function () { 
    $('#img_holder').cycle({ 
        fx: 'fade', 
        timeout: SLIDE_INTERVAL ? SLIDE_INTERVAL : 5000, 
        //autostop: 1, 
        pager: '#link_holder'
    });
    
    $('.linkme').click(function(){ 
        $(location).attr('href', $(this).attr('url'));
    });
    
    $('#f-fcstr').focus(function(){ 
        var v = $(this).val();
        if (v == 'Enter zip code') $(this).val('');
        $(this).addClass('active');
    });
    
    $('#f-fcstr').blur(function(){ 
        var v = $(this).val();
        if (v == '') $(this).val('Enter zip code');
    });
});

