//Javascript

function flashArea(ele_id){
	var img_url = document.getElementById(ele_id).style.backgroundImage;
	
	document.getElementById(ele_id).style.backgroundImage = "none";
	
	$("#" + ele_id).animate( { backgroundColor: '#ccc' }, 1000)
    .animate( { backgroundColor: '#fff' }, 1000, null, function(){document.getElementById(ele_id).style.backgroundImage = img_url;});
	//document.getElementById(ele_id).style.backgroundImage = img_url;
}

function resetBgImg(ele_id, img_url){
	document.getElementById(ele_id).style.backgroundImage = img_url;
}