/*============================================================

Author: Simon Young
http://simonyoung.net
http://twitter.com/simon180

ONLOAD.JS 
Site specific JavaScript functionality

(c) Simon Young, 2010. All rights reserved.

============================================================*/

$(document).ready(function () {
	
	// uncomment the next two lines to activate Cufon to replace elements with Museo Sans
	Cufon.replace("#content h1, #sidebar ul#menu-main-navigation li a", {hover: true});
	
	// make links with rel=external open in new window/tab
	$(function() {
        $('a[rel*=external]').click( function() {
            window.open(this.href);
            return false;
        });
    });
    
    
    $(".masthead .carousel-container").jCarouselLite({
        btnNext: ".carousel-container .next",
        btnPrev: ".carousel-container .prev",
        auto: 5000,
        speed: 1000,
        visible: 1
    });
    
	
});
