$(document).ready(
    function() {

        // Open links with rel="external" in new window - like ye ole' target="_blank"
        $('a[rel="external"]').click(function() {window.open( $(this).attr('href') ); return false;});

        // Initiate Colorbox
		$(".ngg-gallery-thumbnail a").colorbox();

		// Toggle Gallery Info
		$(".post .entry .gallery_info").hide();
		$(".post .entry h3.info_toggle").click(function(){
			$(".post .entry .gallery_info").toggle("slow");
			$(this).toggleClass("open");
		});
		
		// Call home page slideshow
		$('#main_marketing #motion').galleryView({
				gallery_width: 660,
				gallery_height: 396,
				nav_theme: 'light',
				pause_on_hover: true
			});

    }
);
