$(document).ready(function(){
    $('#homeimages').cycle({ 
        speed:  'slow', 
        animation: 'slow',
        timeout: 5000
    });
    $('.blox').click(function(event) {
    	event.preventDefault(); window.location = $(this).attr('rel');
    });
    $('A[rel="external"]')
    .click( function() {
    window.open( $(this).attr('href') );
    return false;
    });
});



