function infoBox() {
	//msg = 'Parerea dumneavoastra este importanta pentru noi ! - <a href="'+websiteURL+'index.php?infoURL=true" class="openPop">mai multe detalii</a>';	
	//elem = '<div id="infoBox"><a href="#" class="close">x</a>'+msg+'</div>';
	elem = '<div id="ib" style="position: relative; background: url(http://www.ochelarisoare.ro/ochelari.jpg); width: 400px; height: 300px;"> <a class="openPop" href="'+websiteURL+'index.php?infoURL=true" style="display:block; position:absolute; top:0; left:0; width:400px; height:280px;">&nbsp;</a> <a class="close" style="display:block; position:absolute; top:280px; left:0px; width:400px; height:20px;" href="#">&nbsp;</a> </div>';
	$.blockUI({ message: elem, css: {border: 'none'} });	
	$("body").append(elem);
		$('.blockOverlay').attr('title','Click pentru deblocare').click($.unblockUI);
	
	$(".close").click(function(){
		$.get(websiteURL+"index.php?closeIB=true");
		$('#ib').animate({ top:"0px",opacity:0 }, "slow");
		$('.blockOverlay').click();
		return false;
	});
	
	$(".openPop").click(function(){
		window.open($(this).attr("href"), '', 'width=980,height=600,toolbar=0,scrollbars=yes' );
		return false;
	});
}
$().ready(function(){
	$().pngFix();
	$(".rounded").corner();
	$(".menu-item").hover(
		function(){
			$(this).children("ul").show();
			$(this).addClass("selected");
		},
		function(){
			$(this).children("ul").hide();
			$(this).removeClass("selected");
		}
	);
});
