/*(function($) {
	$(document).ready(function(){
		$('#sidebar li:even').addClass('even');
		
		$('#menu li').hover(function() {
			$(this).find('ul.sub').addClass('hover');
		}, function() {
			$(this).find('ul.sub').removeClass('hover');
		});
	});
})(jQuery);
*/

/*
var poze;
function o(fileName,w,h) {
	if(poze) poze.close();
	X = (screen.width - 500)/2;
	Y = (screen.height - 600)/2;
	poze=window.open("about:blank","ss",'scrollbars=no,status=no,menubar=no,location=no,resizable=no,titlebar=no,width='+w+',height='+h+',left='+X+',top='+Y);
	poze.document.write('<html><head>');
	poze.document.write('<title>Picture</title>');
	poze.document.write('</head>');
	poze.document.write('<body bgcolor="#ffffff" style="margin:0">');
	poze.document.write('<img border="0" src="'+fileName+'" onClick="window.close();">');
	poze.document.write('</body></html>');
	poze.focus();
	
	return false;
}
*/

/*
#main_container{position:relative; width:767px;}
#top{position:relative;top:0;left:0; width:767px; height:142px;background: url(img/top.jpg) no-repeat;}
#container{position:relative;top:0;left:0; width:767px;background: url(img/bg_main.jpg) repeat-y; border-left:1px solid #336699; border-right:1px solid #336699;  background:#ff0000}
#left {position:absolute;top:0;left:0; width:377px; text-align:center; background:#bbb;}
#center {position:absolute;top:0;left:377px; width:390px; text-align:left; background:#ccc}
#footer{position:absolute;top:0;left:0; background: url(img/footer.jpg); width:767px; height:96px;}
#casa {position:absolute:}
*/

/*
function set_div_heights() {
	var container = document.getElementById('container');
	var center = document.getElementById('center');
	var footer = document.getElementById('footer');
	var top = document.getElementById('top');
	
	footer.style.top = center.offsetHeight + top.offsetHeight + "px";
	container.style.height = center.offsetHeight + "px";
}
*/