
function printPage()
{
	window.print();
}

function isValidEmail(mejl)
{
	var isok = true;
	if (mejl.length<8) isok = false;
	if (mejl.indexOf('@')<=0) isok = false;
	if (mejl.indexOf('.')<=0) isok = false;
	return isok;
}


function findPosY(ajdi) {
	var curtop = 0;
	var obj = document.getElementById(ajdi);
	if (obj.offsetParent) {
		do {
			curtop += obj.offsetTop;
		} while (obj = obj.offsetParent);
	}	
	return curtop;
}

function findPosX(ajdi) {
	var curleft = 0;
	var obj = document.getElementById(ajdi);
	if (obj.offsetParent) {
		do {
			curleft += obj.offsetLeft;
		} while (obj = obj.offsetParent);
	}
	return curleft;
}


// captcha
function captchaReload() {
	//document.getElementById('captcha').innerHTML = '<img src="/captcha.php?'+(Math.floor(Math.random()*111111111111))+'" alt="Slika" width="200" height="50" />';
	document.getElementById('captcha').innerHTML = '<img src="/captcha.php?r='+(Math.floor(Math.random()*111111111111))+'" alt="Slika" width="200" height="50" alt="Osveži" title="Osveži" onclick="captchaReload()" onmouseover="this.style.cursor=\'pointer\'" />';
}

function loadCommentList(cid,ctid,p) {
	
}


/* jQuery related */
$(document).ready(function() {

	//colorbox 
	$("a[rel='gallery']").colorbox({slideshow:false, slideshowAuto:false});
	$("a[rel='frame_wide']").colorbox({iframe:true, innerWidth:900, innerHeight:550, rel:'nofollow'});
	$("a[rel='frame_normal']").colorbox({iframe:true, innerWidth:670, innerHeight:550, rel:'nofollow'});
	$("a[rel='frame_small']").colorbox({iframe:true, innerWidth:470, innerHeight:300, rel:'nofollow'});
	
//	$('a[rel="add_comment"]').click(function() {
//		var posy = findPosY($(this).attr('id'));
//		var ajdi = $(this).attr('id').replace('comment_','');
//		var aid = ajdi.split('_');
//		var id = aid[0];
//		var ctid = aid[1];
//		$('#popup_comment').load('/dummy_comment_add.php?id='+id+'&ctid='+ctid, function() {
//			$('#popup_comment').css('top', posy-100);
//			$('#popup_comment').fadeIn(200);
//		});
//	});
	
//	// comment paginator
//	$('span[rel="paginator"]').click(function() {
//		var ajdi = $(this).attr('id').replace('paginator_','');
//		var aid = ajdi.split('_');
//		var id = aid[0];
//		var ctid = aid[1];
//		var p = aid[2];
//		$('#comment_list').load('/dummy_comments.php?cid='+id+'&ctid='+ctid+'&p='+p);
//	});
	
})
