$(document).ready(function(){   
	$("[id^=cmsEdit:]").each(function(){
		
		$contentId = this.id.split('cmsEdit:');
		
		if($contentId[1] == -1)
			$query = "?title=" + this.title;
		else
			$query = "?id=" + $contentId[1];
		
				
		$($(this).parent().get(0)).mouseover(function(){
			$(".cmsEditBar",this).css("display","block");
		}).mouseout(function(){
			$(".cmsEditBar",this).css("display","none");
		});
	});	
});



function editPopup(url){
	window.open(url, "editWindow", 
		"height=540,width=665,resizable=1,scrollbars=1,toolbar=0,status=0,location=0,menubar=0" );
}
function reloadWindow(){
	
	if(typeof popup != 'undefined' && popup == true){
		location.href = urlWOTab+"&tab="+currTab;
	}else{
		document.location.reload(); 
	}
}

