function openWin(myElem) {
	window.open(myElem.href,'','toolbar=no,scrollbars=yes,directories=no,status=no,menubar=no,resizable=yes,width=550,height=400');
	return false;
}

function redirFromPopupTpParent(elem) {
	if (window.opener) {
		window.opener.location.href=elem.href;
		window.close();
		return false;
	}
}

$(document).ready(function() {
	$('A[href $=".jpg"], A[href $=".gif"], A[href $=".png"]').attr('rel', 'thickbox').attr('class', 'thickbox');
});