﻿jQuery.preloadImages = function()
{
    for (var i = 0; i < arguments.length; i++)
    {
        jQuery("<img>").attr("src", arguments[i]);
    }
}
$(function()
{
	// Image Preloading
	var imageDir = "/wp-content/themes/Integrity/images/"
	$.preloadImages(imageDir+'john-simanowitz.jpg',imageDir+'ed-morrissey.jpg');
	// Submit Hover State
	$('#updates #submit, #contact #submit').hover
	(
		function () 
		{
			$(this).css('background-color','#a12915').css('color','#ffffff');
		}, 
		function () 
		{
			$(this).css('background-color','#ffffff').css('color','#859092');
		}
	);
});