function jquery_include(siteurl) {

	// BIND EVENTS
	jQuery('.formline').bind('focus blur', function() {
		jQuery(this).toggleClass('focus');
	});
	jQuery('.formarea').bind('focus blur', function() {
		jQuery(this).toggleClass('focus');
	});
	jQuery('.formselect').bind('focus blur', function() {
		jQuery(this).toggleClass('focus');
	});
	jQuery('.formbut').bind('mouseenter mouseleave', function() {
		jQuery(this).toggleClass('hover');
	});

	// REMOVE SUBMENU WHEN NOT FILLED
	jQuery('.submenu:empty').each(function() {
		jQuery(this).parent('#tpl_submenu').remove();
		jQuery('#tpl_content').addClass('tpl_content_wide');
	});

	// ON RESIZE
	jQuery(document).change(function() {
		jQuery('#tpl_footer a.nextlink').addClass('bug').removeClass('bug');
	});

}
