/*
 * main - default Javascript document
 *
 * FG Forrest, a. s. (fg.cz)
 *
 */

/* Test na zapnuté CSS */
function hasCSS() {
	var _d = document.createElement('div')
	_d.id = 'css_test'
	$('body').append(_d)
	var _v = ($('#css_test').width() != 1) ? false : true
	$('#css_test').remove()
	return _v
}

$(document).ready(function() {
	if ( $.browser.msie ) {
		if (parseInt($.browser.version) < 8)
		{
		//alert( $.browser.version );
		/* IE7/6 z-indexing using jQuery, the fix */
		$(function()
		{
			var zIndexNumber = 1000;
			$("div").each(function()
			{
				$(this).css("zIndex", zIndexNumber);
				zIndexNumber -= 10;
			});
		});
		}
	}
	if(hasCSS()) {

    }else{
    /* not CSS - remove HTML code */

    }// hasCSS END
});// document.ready
