/**
 * Author: Nathaniel G. Beighley
 * Date: June 23, 2011
 * 
 * Jquery functions for the knowhy pages.
 */

$(document).ready(function() {
	var wsw = $("#master_container").width();
	if (wsw > '1279'){
		var adjht 	=	'718px';
	} else {
		var adper 	=	(1280 - wsw);
		var adtwo 	=	(adper / wsw);
		var adthe	=	(718 * adtwo).toFixed(0);
		var nhgt 	=	(718 - adthe);
		$("#master_container").height(nhgt);
	}

    $("#logo_box").html("<a href='index.php'><img src='images/fred_logo.png' border='0' /></a>");		// All Logo's Link to Home Page
    
	$("#kwlogo").css("opacity","0.5");
	
	// Then move into the hover animations.
	
	$("#kwlogo").mouseenter(function(){
		$("#kwlogo").animate({
			opacity: 1
		}, 500, function(){
			// complete
		})
	}),
	$("#kwlogo").mouseleave(function(){
		$("#kwlogo").animate({
			opacity: 0.5
		}, 500, function(){
			// complete
		})
	});
	
});

