/* ---------------------------------------------------------------------------------------
Author: 		Curtis Campbell
Updated: 		September.27.2010
--------------------------------------------------------------------------------------- */
/* Start The document Ready function
--------------------------------------------------------------------------------------- */
$(document).ready(function(){
var initalHeight = $('#content').height();
var asideWrapHeight = $('#aside_content_wrap').height();
if(initalHeight > asideWrapHeight) {
	$('#aside_content_wrap').css({'height':((initalHeight))+'px'});	
} else if(initalHeight < asideWrapHeight) {
	$('#content').css({'height':((asideWrapHeight))+'px'});	
}

/* Form Script
--------------------------------------------------------------------------------------- */
	$('input, textarea, select').focus(function(){
		$(this).addClass("over");
		}).blur(function(){
		$(this).removeClass("over");
	});

});
