var $jq = jQuery.noConflict();


$jq(document).ready(function($){
    $('#anim').cycle({
        fx:     'fade',
        speed:   300,
        timeout: 3000,
        pause:   1
    });
    
    $("#maps-and-hours .map-box .button").each(function(){
        $(this).colorbox({
            width:"640",
            height:"480",
            iframe:true
        });
    });
    
    $('a[rel="lightbox"]').colorbox();
    
    $('form[action="https://www.paypal.com/cgi-bin/webscr"]').attr("target", "_blank");
    $('.blank').attr("target", "paypal");
    
});

