Monday Morning Moments with Mike Van Hoozer artwork

What is Your Vision?

Monday Morning Moments with Mike Van Hoozer

English - March 12, 2018 12:05 - 17 minutes - 16 MB - ★★★★★ - 3 ratings
Business Education Homepage Download Apple Podcasts Google Podcasts Overcast Castro Pocket Casts RSS feed


Vision is important! We must be able to see a future for ourselves beyond this current moment and do everything we can to live that vision every day. As Les Parrot says in his book 3 Seconds, "Vision is a picture of the future that gives passion to the present."

In today's episode of Monday Morning Moments, I discuss the importance of having vision in your life and some key questions to ask in developing a vision for yourself, your family, and your team.







"Vision is a picture of the future that gives passion to the present."—LES PARROT











Vision Questions

Where do you see yourself in 3 years?
What are you willing to sacrifice to get there?
What are you willing to change to get there?
Who is going to help you realize your vision?

Products from Amazon.com








jQuery(document).ready(function() {

var CONSTANTS = {
productMinWidth : 185,
productMargin : 20
};

var $adUnits = jQuery('.aalb-product-carousel-unit');
$adUnits.each(function() {
var $adUnit = jQuery(this),
$wrapper = $adUnit.find('.aalb-pc-wrapper'),
$productContainer = $adUnit.find('.aalb-pc-product-container'),
$btnNext = $adUnit.find('.aalb-pc-btn-next'),
$btnPrev = $adUnit.find('.aalb-pc-btn-prev'),
$productList = $productContainer.find('.aalb-pc-product-list'),
$products = $productList.find('.aalb-pc-product'),
productCount = $products.length;

if (!productCount) {
return true;
}

var rows = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10);
var columns = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10);

if( columns ) {
var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px';
$adUnit.css( 'min-width', productContainerMinWidth );
$productContainer.css( 'min-width', productContainerMinWidth );
$products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' );
}

if (rows && columns) {
var cutOffIndex = (rows * columns) - 1;
$products.filter(':gt(' + cutOffIndex + ')').remove();
}

function updateLayout() {
var wrapperWidth = $wrapper.width();
var possibleColumns = columns || parseInt( wrapperWidth / (CONSTANTS.productMinWidth + CONSTANTS.productMargin), 10 );
var actualColumns = columns || possibleColumns < productCount ? possibleColumns : productCount;

/**
* The actual columns can be zero when the wraperwidth is less than sum of CONSTANTS.productMinWidth and
* CONSTANTS.productMargin.The parseInt will use floor function and converts any value less than 1 to
* zero.Therefore making actual columns 1 .
**/
if( actualColumns == 0 ) {
actualColumns = 1;
}

var productWidth = parseInt( wrapperWidth / actualColumns, 10 ) - CONSTANTS.productMargin;

$products.css( 'width', productWidth + 'px' );

/**
* Removing the Carousel navigation button when the number of products selected by admin is less
* than the actual columns (the number of products) can be shown on screen
**/
if( productCount > actualColumns ) {
$btnNext.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
$btnPrev.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
}
$productContainer.