﻿//Initialize Scripts on DOM Ready
$(document).ready(function() {

	// Global: External Links
	$('A[rel="external"]').click(function() {
		window.open($(this).attr('href'));
		return false;
	});
	
	// Landing Page: Auto-Rotating Tabs
	$("#tabs ul").tabs({
		fx: {
			opacity: "toggle"
		}
	}).tabs("rotate", 5000);
	
	// Landing Page: Auto-Rotating Tabs
	$("#tabsHW ul").tabs({
		fx: {
			opacity: "toggle"
		}
	}).tabs("rotate", 5000);
	
    // Apply to all png images 
    $('img[@src$=.png]').ifixpng();
    
    // Cycle Featured Tip
    $('#featuredTips').cycle({
        prev: '#prevTip',
        next: '#nextTip',
        speed:  500,
        timeout: 0
    });

});