//**********************************************************************************************************************
/**
* COMPANY: Zipline Interactive
* EMAIL: infon@gozipline.com
* PHONE: 509-321-2849
* DESCRIPTION: This document contains programming required for the website templates.  Requires the jQuery library.
*/
//***********************************************************************************************************************


//***********************************************************************************************************************
//ON DOCUMENT READY FUNCTIONS
//***********************************************************************************************************************
$(function() {

	//MAKE .ASIDE A FIXED HEIGHT
	var fixedHeight = $('.interiorContent').height();
	if (fixedHeight > 600) {
		$('.sidebar').height(fixedHeight);
	}


});


