//**********************************************************************************************************************
/**
* 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.
*/
//***********************************************************************************************************************

//CREATE HTML 5 STYLES
document.createElement('header');
document.createElement('nav');
document.createElement('section');
document.createElement('article');
document.createElement('aside');
document.createElement('footer');


var old_src = '';

// dd-vert plugin (for vertically aligning elements)
(function($){$.fn.vert=function(options){this.each(function(){var obj=$(this);var parent_height=obj.parent().height();var item_height=obj.height();var padding_top=((parent_height-item_height)/2);obj.css({'padding-top':padding_top,'padding-bottom':padding_top})})}})(jQuery);


//***********************************************************************************************************************
//ON DOCUMENT READY FUNCTIONS
//***********************************************************************************************************************
$(function() {
	
	$('.vert').vert();

	$('.hover').hover(function(){
		
		old_src = $(this).attr('src');
		new_src = old_src.replace('off','on');
		
		$(this).attr('src',new_src);
		
	},function(){
	
		$(this).attr('src',old_src);
	
	});

});
