function ShowElement() {
var el = document.getElementById('hideelement');
el.style.display = '';
el.style.height = '100%';
el.style.width = '100%';
el.style.backgroundColor = 'black';
document.body.style.overflow = 'none';
setTimeout("HideElement()",15000);
}

function HideElement() {
var el = document.getElementById('hideelement');
el.style.display = 'none';
el.style.height = '0px';
el.style.width = '0px';
el.style.backgroundColor = '';
document.body.style.overflow = 'auto';
} 
function tridit(co, jak, que, group){
		function loadArticle(jak, co, sql, division){
	        $.post("/ajax-bazar-select.php", {value: jak, vyber: co, que: sql, group: division}, function(data){
	            $("#results").html(data);
            });
        }
/*
		if ($("#VINTAGE")){
    		$("#VINTAGE").change(function(){
				loadArticle(this.value, "vintage", $("#QUE"));
			});
		}
		if ($("#PRICE")){
    		$("#PRICE").change(function(){
	        	loadArticle(this.value, "price", $("#QUE"));
        	});
		}
		if($("#VINTAGE") || $("#PRICE")){
*/
		loadArticle(jak, co, que, group);
/*
		}
*/
	}

$(document).ready(function(){
						   
	$("a[rel^='prettyPhoto']").prettyPhoto(); 

}); 
