var jquerybodyheight = 0;
var jquerybodyinterval = 0;
var jquerycoreheight = 0;

function jquery_include() {

	// INCLUDE
	jquerybodyinterval = setInterval(jquery_body_height, 25);

	// FORM ACTIONS
	$('.formbut').bind('mouseenter', function() {
		$(this).addClass('over');
	});
	$('.formbut').bind('mouseleave', function() {
		$(this).removeClass('over');
	});
	$('.formarea').bind('focus', function() {
		$(this).addClass('focus');
	});
	$('.formarea').bind('blur', function() {
		$(this).removeClass('focus');
	});
	$('.formline').bind('focus', function() {
		$(this).addClass('focus');
	});
	$('.formline').bind('blur', function() {
		$(this).removeClass('focus');
	});

}

function jquery_body_height() {
	if($('#core').height() !== null) {
		jquerycoreheight = $('#core').height();
	}
	if(jquerybodyheight == 0) {
		jquerybodyheight = $('#tpl_body').height();
	}
	$('#tpl_body').height(jquerybodyheight);
	if($('#tpl_body').height() < $(document).height()) {
		$('#tpl_body').height($(document).height() - jquerycoreheight);
	}
}
