﻿$(document).ready(function() {

    $("#tabs").show();
	
	// Landing Page: Auto-Rotating Tabs
	$("#tabs ul").tabs({
		fx: {
			opacity: "toggle"
		}
	}).tabs("rotate", 7000);

    $('#blockCycle').cycle({
        fx: 'blindX',
        speed:  600,
        delay: 2000,
        pause: 2.5
    });

	// Global: External Links
	$('A[rel="external"]').click(function() {
		window.open($(this).attr('href'));
		return false;
	});

});