jQuery(document).ready(function(){
	jQuery(window).load(function() {
	var test = jQuery('#page').css('height');
	var test2 = jQuery('#page').height();
	//if (test == 'auto') {
		test = test2+'px';
	//}
	jQuery('#dolni-pozadi').css('height', test);
	if (test2 > 1000) {
		jQuery('#dolni-pozadi').css('display', 'block');
	}
	if (test2 <= 1000) {
		jQuery('#dolni-pozadi').css('display', 'none');
	}
	jQuery(window).resize(function() {
		test = jQuery('#page').css('height');
		test2 = jQuery('#page').height();
		//if (test == 'auto') {
			test = test2+'px';
		//}
		jQuery('#dolni-pozadi').css('height', test);
		if (test2 > 1000) {
			jQuery('#dolni-pozadi').css('display', 'block');
		}
		if (test2 <= 1000) {
			jQuery('#dolni-pozadi').css('display', 'none');
		}
	});
	});
	//jQuery("tr.initial").mouseover(function () {
	//	jQuery(this).removeClass('initial').addClass('highlight');		
    //});	
	//jQuery("tr.highlight").mouseout(function () {
	//	jQuery(this).removeClass('highlight').addClass('initial');				
    //});	
});
function DoNav(theUrl) {
	document.location.href = theUrl;
}

