// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

$(document).ready(function(){
    Cufon.replace('h1.title, h2, h3, #secondary li, #tertiary li, div.title, .phone',{
        hover: true
    });
	
    $(".banner-images").cycle();

    $(".colorbox").colorbox();
    $(".colorbox_footer").colorbox({
        title: function(){
            var url = $(this).attr('rev');
            var name = $(this).attr('title');
            return '<a href="'+url+'">'+name+'</a>';
        }
    });
    
//    $("#scroller").simplyScroll({
//        autoMode: 'loop'
//    });
});


