$(document).ready(function() {

	// ------------------------------------------------------------------------
	// DOM READY
	// ------------------------------------------------------------------------

	// REMOVE EMPTY ITEMS FROM lEFT COLUMN
	$('#tpl_submenu .item:empty').remove();

	// REMOVE EMPTY bestel links
	$('.nextlink:empty').remove();

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

	// BIND AND SET CONTENT HEIGHT
	$(window).resize(function() {
		var col_height_1 = $('#tpl_submenu').height();
		if(jQuery.data(document.getElementById('tpl_content'), 'col_height_2')) {
			var col_height_2 = jQuery.data(document.getElementById('tpl_content'), 'col_height_2');
		} else {
			var col_height_2 = $('#tpl_content').height();
			jQuery.data(document.getElementById('tpl_content'), 'col_height_2', col_height_2);
		}
		if(col_height_1 > col_height_2) {
			$('#tpl_content').height(col_height_1);
		}
		//alert($('#tpl_content').data('col_height_2'));
		//alert(jQuery.data(document.getElementById('tpl_content'), 'col_height_2'));
	});
	$(window).trigger('resize');

	// ONLOAD FUNCTION
	$(window).load(function() {

		// ---------------------------------------------------------------------
		// ONLOAD COMPLETE
		// ---------------------------------------------------------------------

		// CUTOM CODE HERE

	});

});
