$(function(){

	$("ul#menu li").hover(function(){
		$('ul:first',this).show();
	}, function(){
		$('ul:first',this).hide();
	});

//	jQuery("a[href^='http:']").not("[href*='"+location.host+"']").attr('target','_blank');  


	refreshSzotarDia();
	
	
	pulsate("_hu_kecskemeti-kinalo");
	pulsate("_hu_referencia");


});


function pulsate( id ) {
	jQuery("#"+id).animate({
		opacity: 0.4
	}, 500).animate({
		opacity: 1
	}, 500);
	setTimeout("pulsate('"+id+"')", 1000);
}

function refreshSzotarDia() {

	jQuery.ajax({
		type: "GET",
		url: "/getDictionaryItem.php",
		data: {},
		success: function(msg){
			jQuery("#szotar_dia").html(msg);
		},
		error: function (err) {
		
		}
	});
	
	setTimeout("refreshSzotarDia()", 10000);

}

function externalLinks() {

	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") &&
			anchor.getAttribute("rel") == "external")
			anchor.target = "_blank";
	}
	
}

