$(document).ready(function(){ var t = setTimeout( eee,1000);});
function eee() { 
	
	if(!$.browser.msie) {
		$("#shadowbox_container").css('position','fixed');
	}
};
function slideText(idecko,prvek){
	$('#'+idecko).slideToggle('');
	if($(prvek).children('img').attr("src")=="images/arrow-down.png")
		$(prvek).children('img').attr("src","images/arrow-up.png");
	else {
		$(prvek).children('img').attr("src","images/arrow-down.png");
	}	
}