function DisplayFlash(path, width, height, wmode){

    text = "<object type=\"application/x-shockwave-flash\" data=\""+path+"\" width=\""+width+"\" height=\""+height+"\" wmode=\""+wmode+"\" quality=\"high\">\r\n";
    text += "<param name=\"movie\"	value=\""+path+"\" />\r\n";
    text += "<param name=\"wmode\" value=\""+wmode+"\" />\r\n";
    text += "<param name=\"quality\" value=\"high\" />\r\n";
    text += "<param name=\"width\" value=\""+width+"\" />\r\n";
    text += "<param name=\"height\" value=\""+height+"\" />\r\n";
    text += "</object>";
    document.write(text);
}




function DisplaySubMenu(ID) {
	
	
	if($("#l"+ID).attr("className")=="level_1 active"){
		$("#l"+ID).removeClass("active");
		$("#u"+ID).animate({height: "hide"}, 300);
		return false;
	}

	$("#l"+ID).addClass("active");
	$("#u"+ID).animate({height: "show"}, 300);
}


function HomeChange(ID, picture) {
	
	
	if($("#sm"+ID).attr("className")=="level_1 active")
		return false;

	$("#small_photo div").removeClass("active");
	$("#sm"+ID).addClass("active");
	$("#home-photo").attr("src", "/files/photos/"+picture);
	$("#home-opis").load("/includes/js/jhome.php?id="+ID);
	
}




