| Related sites for http://www.baptistpress.org/ |
| Sacred-Texts__Jainism English translations of the Akaranga Sutra and Kalpa Sutra, primary texts of Jainism. | | Ethnographic_Museum_of_Bomba_(Chieti,_Italy) The Ethnographic Museum of Bomba, created in 1990, collects the tools that man used for millennia to fulfill his own needs (in English and Italian). | | Dictionaries_and_Grammars_of_Indigenous_Languages_of_Mexico Organized by language family, in alphabetical order, this list includes other related books published by the Summer Institute of Linguistics/Instituto LingüÃstico de Verano (Mexico). English/Spanis | | The_View_Askew-niverse From the mind of the uber-film maker of the X Generation: Kevin Smith. | | Dr__Richard_Boylan\'s_Official_Website Articles and photos about UFOs, star visitors and star kids. | | Maria_G_Miller Acting as a project manager for litigation. | | Today\'s_Weddings Wedding guide offering tips, advice, resources and wedding planning information. Over 1,000 wedding vendor links. | | International_Medical_Corps An emergency humanitarian health care relief organization in Albania, Angola, Bosnia, Burundi, Georgia, Kenya, Kosovo, Honduras, Somalia, and Sudan employing doctors, nurses and program managers and l | | Polygamy__Exaltation\'s_Prerequisite_or_Stumbling_Block? Resources to show that polygamy is not the highest form of union between man and wife (wives). Need to consider doctrine on its own merits or lack thereof. | | Ol\'_Blue,_USA A nonprofit organization that is dedicated to educating the nation on highway safety and provides safety programs at community events, public schools, and truck shows. | | Klotz Ancestral heritage of Carolynn Travis Klotz. Focus is on the Klotz and Springer lineages. | | Taggett_Family_Tree Ancestral history and general interests of Hazel Dorothy Taggett. Focus is on the lineage of Cornwall, later Devonport (formerly Stoke Damerel). Surnames include Moon, Spiller and Teague. | | Boys_and_Girls_Club_of_Bethlehem,_Pennsylvania Provides activities and programs to the youth of Bethlehem, PA since 1930. | | Children_of_Domestic_Violence__Risks_and_Remedies Minnesota Center Against Violence and Abuse - by Barbara J. Hart, Esq. | | Linguistic_Families_of_the_Native_Languages Article on Canadian Indian language families from the Quebec History Encyclopedia. | | Sisters_In_Islam A discussion forum for young muslim females covering current issues, Islam and general conversation. | | Coalition_Against_Genocide A spectrum of organizations and individuals in the United States and Canada that have come together in response to the Gujarat riots and deaths of 2002, to demand accountability and justice. | | Johnson,_Kadie-Ann The official website of the beautiful Jamaican born, Miami based model Kadie-Ann johnson. Includes bio, resume, portfolio, and booking contact. | | Phoenicia__Thales_of_Miletus A meticulous biography with reference to various ancient testimonia concerning this philosopher. | | Yarrabah Yarrabah Aboriginal Community is a small community with just over 3000 people, it is about a 45 minute drive (37km south) from the city of Cairns. Brief history, information about the community, arts |
|
Baptist Press - News with a Christian Perspective
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','width','240','height','66','src','/flash/BPHeaderPromo','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','/flash/BPHeaderPromo','wmode','transparent'); //end AC code
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','width','240','height','66','src','/flash/BPHeaderPromo','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','/flash/BPHeaderPromo','wmode','transparent' ); //end AC code
October 12, 2008
/***********************************************
* Memory Scroller script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
var memorywidth="420px" //scroller width
var memoryheight="16px" //scroller height
var memorybgcolor="" //"#DEFDD9" //scroller background
var memorypadding="1px" //padding applied to the scroller. 0 for non.
var borderCSS="" // "border: 1px solid black;" //Border CSS, applied to scroller to give border.
var memoryspeed=1 //Scroller speed (larger is faster 1-10)
var pauseit=1 //Pause scroller onMousever (0=no. 1=yes)?
var persistlastviewedmsg=1 //should scroller's position persist after users navigate away (1=yes, 0=no)?
var persistmsgbehavior="onload" //set to "onload" or "onclick".
//Specify the scroller's content (don't delete tag)
//Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):
var memorycontent='Oct. 12 Southern Baptists will observe World Hunger Sunday. At the national level Southern Baptists contributions to hunger relief since 1974 approach a quarter of a billion dollars. See stories below. '
////NO NEED TO EDIT BELOW THIS LINE////////////
var combinedcssTable="width:"+(parseInt(memorywidth)+6)+"px;background-color:"+memorybgcolor+";padding:"+memorypadding+";"+borderCSS+";"
var combinedcss="width:"+memorywidth+";height:"+memoryheight+";"
var divonclick=(persistlastviewedmsg && persistmsgbehavior=="onclick")? 'onClick="savelastmsg()" ' : ''
memoryspeed=(document.all)? memoryspeed : Math.max(1, memoryspeed-1) //slow speed down by 1 for NS
var copyspeed=memoryspeed
var pausespeed=(pauseit==0)? copyspeed: 0
var iedom=document.all||document.getElementById
if (iedom)
document.write(''+memorycontent+'')
var actualwidth=''
var memoryscroller
if (window.addEventListener)
window.addEventListener("load", populatescroller, false)
else if (window.attachEvent)
window.attachEvent("onload", populatescroller)
else if (document.all || document.getElementById)
window.onload=populatescroller
function populatescroller(){
memoryscroller=document.getElementById? document.getElementById("memoryscroller") : document.all.memoryscroller
memoryscroller.style.left=parseInt(memorywidth)+8+"px"
if (persistlastviewedmsg && get_cookie("lastscrollerpos")!="")
revivelastmsg()
memoryscroller.innerHTML=memorycontent
actualwidth=document.all? temp.offsetWidth : document.getElementById("temp").offsetWidth
lefttime=setInterval("scrollmarquee()",20)
}
function get_cookie(Name) {
var search = Name + "="
var returnvalue = ""
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = document.cookie.indexOf(";", offset)
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}
function savelastmsg(){
document.cookie="lastscrollerpos="+memoryscroller.style.left
}
function revivelastmsg(){
lastscrollerpos=parseInt(get_cookie("lastscrollerpos"))
memoryscroller.style.left=parseInt(lastscrollerpos)+"px"
}
if (persistlastviewedmsg && persistmsgbehavior=="onload")
window.onunload=savelastmsg
function scrollmarquee(){
if (parseInt(memoryscroller.style.left)>(actualwidth*(-1)+8))
memoryscroller.style.left=parseInt(memoryscroller.style.left)-copyspeed+"px"
else
memoryscroller.style.left=parseInt(memorywidth)+8+"px"
}
if (iedom){
with (document){
document.write('')
write('')
write('')
write('')
document.write('')
}
}
mmLoadMenus();
SECTION
BP News
BP en Español
BP Sports
BP Cartoons
BP on Assignment
FEATURES
SBC in the News
Culture Digest
International Digest
Life Digest
Marriage Digest
Passion Digest
Story
Collections
DOWNLOADS
Today's Stories
Past Stories by Date
SEARCH
Search Stories
Search Photos
MEDIA
Photo Library
Video Library
Audio/Video Library
RSS NEWSFEED
BP Newsfeed
BP
Español
feed
BPNews
BP
en Español
BPSports
ABOUT US
About
Baptist Press
2007 Conference
FAQs
Subscribe
to BP
Tell
A Friend
Contact
BP
Connecticut Supreme Court legalizes 'gay marriage'
HARTFORD, Conn. (BP)--Connecticut became the third state in the nation to legalize "gay marriage" Oct. 10 when its Supreme Court issued a much-anticipated ruling declaring that homosexual couples are guaranteed the right to "marry" under the state constitution. "The ancient definition of marriage as the union of one man and one woman has its basis in biology, not bigotry. If the state no longer has an interest in the regulation of procreation, then that is a decision for the legislature or the people of the state and not this court."-- Dissenting Justice Peter T. Zarella The 4-3 decision follows a similar one by the California Supreme Court in May and a landmark ruling by the Massachusetts high court in 2003. All three rulings involved one-vote margins. The Connecticut court overruled a lower court decision that had upheld the state's marriage laws. Conservatives in Connecticut have few options, although their best one will appear on the Nov. 4 ballot, when voters will be asked whether a constitutional convention should be called. The state constitution requires the question to appear on the ballot every 20 years. "Connecticut voters will have one opportunity on Nov. 4 to reassert their right to self government. We must vote yes," Peter Wolfgang, executive director of the Family Institute of Connecticut, was quoted as saying in the Hartford Courant. But that may be the only option. Unlike California -- which will vote a marriage amendment Nov. 4 -- Connecticut does not have a law allowing voters to gather signatures to place a constitutional amendment on the ballot. Any amendment must be initiated by the left-leaning legislature, which has been cold to the idea. The majority ruling covered 85 pages and was handed down more than a year after justices heard the case in May 2007. "We recognize, as the Massachusetts Supreme Judicial Court did … that 'our decision marks a change in the history of our marriage law,'" Justice Richard N. Palmer wrote for the court. "… Even though the right to marry is not enumerated in our constitution, it long has been deemed a basic civil right. … [O]ur conventional understanding of marriage must yield to a more contemporary appreciation of the rights entitled to constitutional protection. Interpreting our state constitutional provisions in accordance with firmly established equal protection principles leads inevitably to the conclusion that gay persons are entitled to marry the otherwise qualified same sex partner of their choice." The lawsuit was filed in 2004 on behalf of eight homosexual couples by Gay & Lesbian Advocates & Defenders, the same organization that successfully sued to legalize "gay marriage" in Massachusetts. The next year, the Connecticut legislature passed and the governor signed into law a bill legalizing same-sex civil unions -- which grant all the legal benefits of marriage -- but the lawsuit nonetheless continued. The majority opinion ruled that civil unions -- viewed by some who support them as common ground -- are themselves discriminatory. In a dissent, Justice Peter T. Zarella asserted that the majority opinion failed to address the real purpose behind the state's marriage laws -- procreation. "[The majority opinion] is based primarily on the majority's unsupported assumptions that the essence of marriage is a loving, committed relationship between two adults and that the sole reason that marriage has been limited to one man and one woman is society's moral disapproval of or irrational animus toward gay persons," Zarella wrote. Read More
MEDIA GALLERY
AUDIO: SBC President Johnny Hunt addresses Executive Committee
Complete Olympics Coverage
Stories, photos and more from Beijing.
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0','width','299','height','184','src','/flash/Blog4040Scroll','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','/flash/Blog4040Scroll' ); //end AC code
Billy Graham returns home from hospital
MONTREAT, N.C. (BP)--Evangelist Billy Graham returned home Saturday after spending Friday night in an Asheville, N.C., hospital following a fall at his house.
Read More
MORE NEWS
ELECTION 08: 2 years after loss, Ariz. considers marriage amendment again
PHOENIX (BP)--Two years after Arizona became the first state to defeat a constitutional marriage amendment on the ballot, voters there will get another chance Nov. 4 ...
Read More
AFA ends boycott of McDonald's
NASHVILLE, Tenn. (BP)--The American Family Association announced Oct. 9 an end to the boycott it had organized against McDonald's, citing the restaurant chain's willingness to "remain neutral in the culture war ..."
Read More
IN THEIR OWN WORDS: Barack Obama & John McCain on immigration, border security
NASHVILLE, Tenn. (BP)--This is the fifth in a series of stories focusing on one specific national issue and detailing where the two major presidential candidates stand.
Read More
NAMB commissions 108 for service
NEW ORLEANS (BP)--Declaring "you have been sent by the Father," North American Mission Board President Geoff Hammond and other NAMB leaders commissioned 108 missionaries and chaplains to the North American mission field during a celebration service at First Baptist Church in New Orleans.
Read More
In Brazil, his fluency is missions catalyst
Not too young to share the Gospel
INTERNATIONAL DIGEST: Iraq's Christians protest abolishment of election law
New Orleans seminary remembers Leavell
'Fireproof' opening in 59 new cities
First Person
Mark Coppenger
Br'er Bear & the Briar Patch
EVANSTON, Ill. (BP)--Today's top Chicago Tribune headline screams, "All signs pointing to panic," and Matt Drudge crowns his webpage with the photo of a snarling bear.
Kelly Boggs
Polls, polls, polls
ALEXANDRIA, La. (BP)--"Opinion polls," someone once said, "measure the public's satisfaction with its ignorance."
Phil Boatwright
'Billy' is inspiring, entertaining
KANSAS CITY, Kan. (BP)--"I purchased the Love Dare book for my daughter and her husband ..."
Story Collections
Cooperative Program: Love in Action
2008 World Hunger Sunday
2008 "Fireproof"
© Copyright 2008 Baptist Press. All
Rights Reserved. Terms
of Use.
Southern Baptist Convention
_uacct = "UA-2729833-1";
urchinTracker();
|
|