Label Posts

Website bawlna

AD (728x90)

  • 2793 Pine St

    2793 Pine St

    Nulla facilisi. Cras blandit elit sit amet eros sodales, non accumsan neque mollis. Nullam tempor sapien tellus, sit amet posuere ante porta quis. Nunc semper leo diam, vitae imperdiet mauris suscipit et. Maecenas ut neque lectus. Duis et ipsum nec felis elementum pulvi...

  • 1100 Broderick St

    1100 Broderick St

    Nulla facilisi. Phasellus ac enim elit. Cras at lobortis dui. Nunc consequat erat lacus, a volutpat nisi sodales vitae. Phasellus pharetra at nulla in egestas. Vestibulum sit amet tortor sit amet diam placerat tincidunt sit amet eget lorem. Phasellus ...

  • 868 Turk St

    868 Turk St

    Nulla facilisi. Phasellus ac enim elit. Cras at lobortis dui. Nunc consequat erat lacus, a volutpat nisi sodales vitae. Phasellus pharetra at nulla in egestas. Vestibulum sit amet tortor sit amet diam placerat tincidunt sit amet eget lorem. Phasellus posuere posuere fel...

  • 420 Fell St

    420 Fell St

    Sed at vehicula magna, sed vulputate ipsum. Maecenas fringilla, leo et auctor consequat, lacus nulla iaculis eros, at ultrices erat libero quis ante. Praesent in neque est. Cras quis ultricies nisi, vitae laoreet nisi. Nunc a orci at velit sodales mollis ac ac ipsum. Na...

Thursday, February 25, 2016

Dropdown menu





<form name="jumpy">
<select name="example" size="1" onChange="gone()">
<!-- CHANGE THE BELOW URLS TO YOUR OWN-->
<option value="http://www.javascriptkit.com" selected>JavaScript Kit</option>
<option value="http://www.cssdrive.com">CSS Drive</option>
<option value="http://www.Freewarejava.com">Freewarejava</option>
<option value="http://www.dynamicdrive.com">Dynamic Drive</option>
</select>

<input type="button" name="test" value="Go!" onClick="gone()">
</form>

<script language="javascript">
<!--

//Drop-down Document Viewer- (c) Dynamic Drive (www.dynamicdrive.com)
//For full source code, 100's more DHTML scripts, and TOS,
//visit http://www.dynamicdrive.com

//Specify display mode (0 or 1)
//0 causes document to be displayed in an inline frame, while 1 in a new browser window
var displaymode=1
//if displaymode=0, configure inline frame attributes (ie: dimensions, intial document shown
var iframecode='<iframe id="external" style="width:95%;height:400px" src="http://www.yahoo.com"></iframe>'

/////NO NEED TO EDIT BELOW HERE////////////

if (displaymode==0)
document.write(iframecode)

function gone(){
var selectedurl=document.jumpy.example.options[document.jumpy.example.selectedIndex].value
if (document.getElementById&&displaymode==0)
document.getElementById("external").src=selectedurl
else if (document.all&&displaymode==0)
document.all.external.src=selectedurl
else{
if (!window.win2||win2.closed)
win2=window.open(selectedurl)
//else if win2 already exists
else{
win2.location=selectedurl
win2.focus()
}
}
}
//-->
</script>

Advertize na



<script language="JavaScript1.2">

//Translucent scroller- By Dynamic Drive
//For full source code and more DHTML scripts, visit http://www.MUC7.BLOGSPOT.com
//This credit MUST stay intact for use

var scroller_width='150px'
var scroller_height='115px'
var bgcolor='#E0EFD1'
var pause=3000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)

var scrollercontent=new Array()
//Define scroller contents. Extend or contract array as needed
scrollercontent[0]='Articles na neih leh ong puak un<a href="http://www.MUC7.BLOGSPOT.com">Freewarejava.com </a>for free Java applets!'
scrollercontent[1]='Ih pawlpi te ading thungen ni<a href="http://www.MUC7.BLOGSPOT.com">JavaScript Kit</a> is the most comprehensive JavaScript site online.'
scrollercontent[2]='Link to Dynamic Drive on your site. dam maw? <a href="http://www.MUC7.BLOGSPOT.com">links page</a>.'


////NO need to edit beyond here/////////////

var ie4=document.all
var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1

if (ie4||dom)
document.write('<div style="position:relative;width:'+scroller_width+';height:'+scroller_height+';overflow:hidden"><div id="canvas0" style="position:absolute;background-color:'+bgcolor+';width:'+scroller_width+';height:'+scroller_height+';top:'+scroller_height+';filter:alpha(opacity=20);opacity:0.2;"></div><div id="canvas1" style="position:absolute;background-color:'+bgcolor+';width:'+scroller_width+';height:'+scroller_height+';top:'+scroller_height+';filter:alpha(opacity=20);opacity:0.2;"></div></div>')
else if (document.layers){
document.write('<ilayer id=tickernsmain visibility=hide width='+scroller_width+' height='+scroller_height+' bgColor='+bgcolor+'><layer id=tickernssub width='+scroller_width+' height='+scroller_height+' left=0 top=0>'+scrollercontent[0]+'</layer></ilayer>')
}

var curpos=scroller_height*(1)
var degree=10
var curcanvas="canvas0"
var curindex=0
var nextindex=1

function moveslide(){
if (curpos>0){
curpos=Math.max(curpos-degree,0)
tempobj.style.top=curpos+"px"
}
else{
clearInterval(dropslide)
if (crossobj.filters)
crossobj.filters.alpha.opacity=100
else if (crossobj.style.opacity)
crossobj.style.opacity=1
nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas1"
tempobj=ie4? eval("document.all."+nextcanvas) : document.getElementById(nextcanvas)
tempobj.innerHTML=scrollercontent[curindex]
nextindex=(nextindex<scrollercontent.length-1)? nextindex+1 : 0
setTimeout("rotateslide()",pause)
}
}

function rotateslide(){
if (ie4||dom){
resetit(curcanvas)
crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
crossobj.style.zIndex++
if (crossobj.filters)
document.all.canvas0.filters.alpha.opacity=document.all.canvas1.filters.alpha.opacity=20
else if (crossobj.style.opacity)
document.getElementById("canvas0").style.opacity=document.getElementById("canvas1").style.opacity=0.2
var temp='setInterval("moveslide()",50)'
dropslide=eval(temp)
curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0"
}
else if (document.layers){
crossobj.document.write(scrollercontent[curindex])
crossobj.document.close()
}
curindex=(curindex<scrollercontent.length-1)? curindex+1 : 0
}

function resetit(what){
curpos=parseInt(scroller_height)*(1)
var crossobj=ie4? eval("document.all."+what) : document.getElementById(what)
crossobj.style.top=curpos+"px"
}

function startit(){
crossobj=ie4? eval("document.all."+curcanvas) : dom? document.getElementById(curcanvas) : document.tickernsmain.document.tickernssub
if (ie4||dom){
crossobj.innerHTML=scrollercontent[curindex]
rotateslide()
}
else{
document.tickernsmain.visibility='show'
curindex++
setInterval("rotateslide()",pause)
}
}

if (ie4||dom||document.layers)
window.onload=startit

</script>


<script language="JavaScript1.2">

//Translucent scroller- By Dynamic Drive
//For full source code and more DHTML scripts, visit http://www.MUC7.BLOGSPOT.com
//This credit MUST stay intact for use

var scroller_width='150px'
var scroller_height='115px'
var bgcolor='#E0EFD1'
var pause=3000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)

var scrollercontent=new Array()
//Define scroller contents. Extend or contract array as needed
scrollercontent[0]='Articles na neih leh ong puak un<a href="http://www.MUC7.BLOGSPOT.com">Freewarejava.com </a>for free Java applets!'
scrollercontent[1]='Ih pawlpi te ading thungen ni<a href="http://www.MUC7.BLOGSPOT.com">JavaScript Kit</a> is the most comprehensive JavaScript site online.'
scrollercontent[2]='Link to Dynamic Drive on your site. dam maw? <a href="http://www.MUC7.BLOGSPOT.com">links page</a>.'


////NO need to edit beyond here/////////////

var ie4=document.all
var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1

if (ie4||dom)
document.write('<div style="position:relative;width:'+scroller_width+';height:'+scroller_height+';overflow:hidden"><div id="canvas0" style="position:absolute;background-color:'+bgcolor+';width:'+scroller_width+';height:'+scroller_height+';top:'+scroller_height+';filter:alpha(opacity=20);opacity:0.2;"></div><div id="canvas1" style="position:absolute;background-color:'+bgcolor+';width:'+scroller_width+';height:'+scroller_height+';top:'+scroller_height+';filter:alpha(opacity=20);opacity:0.2;"></div></div>')
else if (document.layers){
document.write('<ilayer id=tickernsmain visibility=hide width='+scroller_width+' height='+scroller_height+' bgColor='+bgcolor+'><layer id=tickernssub width='+scroller_width+' height='+scroller_height+' left=0 top=0>'+scrollercontent[0]+'</layer></ilayer>')
}

var curpos=scroller_height*(1)
var degree=10
var curcanvas="canvas0"
var curindex=0
var nextindex=1

function moveslide(){
if (curpos>0){
curpos=Math.max(curpos-degree,0)
tempobj.style.top=curpos+"px"
}
else{
clearInterval(dropslide)
if (crossobj.filters)
crossobj.filters.alpha.opacity=100
else if (crossobj.style.opacity)
crossobj.style.opacity=1
nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas1"
tempobj=ie4? eval("document.all."+nextcanvas) : document.getElementById(nextcanvas)
tempobj.innerHTML=scrollercontent[curindex]
nextindex=(nextindex<scrollercontent.length-1)? nextindex+1 : 0
setTimeout("rotateslide()",pause)
}
}

function rotateslide(){
if (ie4||dom){
resetit(curcanvas)
crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
crossobj.style.zIndex++
if (crossobj.filters)
document.all.canvas0.filters.alpha.opacity=document.all.canvas1.filters.alpha.opacity=20
else if (crossobj.style.opacity)
document.getElementById("canvas0").style.opacity=document.getElementById("canvas1").style.opacity=0.2
var temp='setInterval("moveslide()",50)'
dropslide=eval(temp)
curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0"
}
else if (document.layers){
crossobj.document.write(scrollercontent[curindex])
crossobj.document.close()
}
curindex=(curindex<scrollercontent.length-1)? curindex+1 : 0
}

function resetit(what){
curpos=parseInt(scroller_height)*(1)
var crossobj=ie4? eval("document.all."+what) : document.getElementById(what)
crossobj.style.top=curpos+"px"
}

function startit(){
crossobj=ie4? eval("document.all."+curcanvas) : dom? document.getElementById(curcanvas) : document.tickernsmain.document.tickernssub
if (ie4||dom){
crossobj.innerHTML=scrollercontent[curindex]
rotateslide()
}
else{
document.tickernsmain.visibility='show'
curindex++
setInterval("rotateslide()",pause)
}
}

if (ie4||dom||document.layers)
window.onload=startit

</script>

Tuesday, February 23, 2016

More than Conquerors

Sermon delivered April 22, 2006 by Mark Finley

McDonald Road Seventh-day Adventist Church

McDonald, Tennessee

Biblical quotations are from the New International Version NIV unless otherwise noted. Divine pronouns and titles are capitalized.

More Than Conquerors

(RealAudio Version available)
Let's pray, and then we'll open God's Word together.
Father, we come this Sabbath morning to put aside, for a few moments, our cares and concerns for the week. We come to put aside the things that are troubling us; all the anxieties, all the stress. We have come to focus on Jesus. So grant to us these few moments a sense of Your incredible presence. May we find in this sanctuary this morning a place at which we meet God. In Christ's name, Amen.
A number of years ago I was holding an evangelistic meeting in Moscow in the Kremlin Auditorium, the Kremlin Palace. It was just at that time that Communism fell. When it fell, new cities throughout the former Soviet Union opened. One of those was the city of Pushna. Pushna was a hidden city. It was closed to all western influence. It was sealed off by Chruzchev in 1955. The city of Pushna was a city of biological scientists. These biological scientists met to develop biological weapons that the Soviet Union could use on the West. When it opened, I was invited to come to Pushna to speak to a group of biological scientists. I had no idea of how many would be there in the meetings. When I got to the city I was ushered into the nicest auditorium in the city, and there were 1,000 scientist there, and their families. The auditorium was absolutely packed. The number one question that they wanted to know the answer to was this: "Who is Jesus? Is Jesus more than a good man? Is Jesus more than an ethical philosopher? Is Jesus more than a moral teacher?"
Christianity stands or falls on that question. "Who is Jesus?" In the last stage of earth's history I am convinced that the devil is going to attack Jesus more than anything else. You don't read too many criticisms of Bartholomew. You don't read a lot of criticisms about Luke. You don't read a lot of criticisms about Paul. But more and more, the devil is focusing on the purpose of Christ. In fact, for the past two thousand years, this Jesus as the leader of Christianity is the center of controversy. It seems that Jesus is continually the focal point of debate.
Now, many are willing to accept Jesus as a divine teacher. They'll accept Him as a wise rabbi. They will accept Him as a compassionate healer, even as a spectacular miracle worker. But the divine Son of God, the One that demands our life, the One that demands our love, The One that can forgive sin, the One that can come and transform your life, the One that can restore a life; a little bit hesitant accepting Him as the divine Son of God.
Well, there is one thing for certain: Jesus Christ believed He was more than a good man. He believed that He was more than a wise or moral preacher. He believed He was much more than a compassionate healer. If you take the gospels seriously, Jesus Christ claimed to be the Son of God. In fact, in John 1 the first verse, John's gospel is written to prove the divinity of Christ to a Jewish world. It begins with the assertion that Christ indeed is more than a good man. John 1:1: In the beginning was the Word, and the Word was with God, and the Word was God. Who is this Word that was with God? Skip down to verse 14. John 1:14- And the Word became flesh and dwelt among us.Obviously Jesus. So Jesus, the Word was with God, and Jesus, the Word, was God. Here is much more than a teacher uttering pious platitudes. Here is much more than an ethical philosopher. The gospel of John points out that Jesus is divine.
Remember that discussion Jesus had with the Samaritan woman? There, Jesus discussed with the Samaritan woman about the Messiah. John 4:25 - The woman said to Him, "I know that Messiah is coming (who is called Christ). When He comes He will tell us all things." In John 4, Jesus doesn't mince any words. John 4:26 - Jesus said to her, "I Who speak to you am He."
Then in John 8, Jesus is probably clearer than He is any other place in the New Testament. Now, there was no doubt about what He meant to the Jewish mind because when Jesus uttered this statement in John 8, the Jews understood that He was referring to himself as the Messiah, and they picked up stones to stone Him. Now, Jesus said in John 8:58, Jesus said to them, "Most assuredly, I say to you, before Abraham was, I AM." Now, every Jew knew exactly what Jesus meant when he said, "before Abraham was, I Am."
You remember the experience with Moses. Wandering in the wilderness he came to a bush that burned but was not consumed (Exodus 3). As Moses saw that bush, God spoke to him. Moses said, "Who is ths Who is speaking to me?" God said, "I AM Who I AM." "I Am the self- existent One. I Am te One who has no beginning and no ending. I Am the One who has always existed."
In John 8:58, Jesus said, "I Am the I Am." In other words, "I am more than a human teacher. I am more than an ethical philosopher. I am more than a compassionate healer. I am more than a model for teaching and a model for the medical profession. I am the self-existent eternal One."
Now, here's the problem: Either Jesus is what He is, or you have two other alternatives, that's all. If Jesus is not the divine Son of God, and He claims to be, He is either a liar, or is deluded. One of these two. You have no other options. If Jesus is not the divine Son of God, and he claims to be, He is either overtly lying or He is self-deluded.
How can you say that One who has such moral claims as outlined on the Sermon on the Mount is a liar? How can you say that One who touches blind eyes and they're opened, touches the ears of the deaf and they're unstopped, how can you say that One who breaks the bread and feeds five thousand, how can you say that a Man who raises the dead is a morally reprehensible liar? How can you say He's self-deluded when you offer His claims. Even Jesus' critics say that He has the highest ethical and moral claims. Well, it is contradictory to say that Jesus has the highest ethical and moral claims, but He's a liar and self-deluded. Either Jesus is Who He says He is, or He is not. And if He's not, He is certainly not a good man nor a moral teacher, no a compassionate healer. Because good men don't lie and moral teachers don't pervert the truth, and compassionate healers don't deceive multitudes.
The controversy regarding Jesus' identity still rages today. You see, the devil does not care if you accept Jesus as a moral creature. The devil doesn't care if you accept Jesus as an ethical philosopher. He doesn't care if you look at His miracles and say He's a great healer. The devil doesn't care as long as you don't accept Him as your Messiah.
If you accept Him as Messiah, that means He has reigns on your life. If you accept Him as Messiah, and if He is your Lord, then His demands are allegiance and commitment. And the devil doesn't care what you believe about evil so long as you do not accept Jesus as Lord. Because, if you do that, then that requires commitment. That requires decision. That requires repentance. That requires forsaking something that is still in the Bible, called sin. If Jesus is simply a Jewish teacher, then there is absolutely no need in giving your life a following. If He is only a good man, his offer of eternal life is completely and absolutely false. The devil will do anything he can to debunk Who Jesus really is.
On April 6, 2006, the National Geographic Magazine published the English translation of a long anticipated Coptic text that was found in Egypt. No doubt if you were watching CNN, CNN devoted headline prime-time to the discovery of the Gospel of Judas. Los Angeles Times, Atlanta Journal, the Miami Herald, San Francisco Chronicle, New York Times, all gave front page coverage to the Gospel of Judas. Now, what is the Gospel of Judas? And why would the devil introduce it just now? The Gospel of Judas was timed to be introduced just before the feature film, The Da Vinci Code comes out in May. Ed Brown's book, the Da Vinci Code, has sold forty million copies. It weaves fact with fiction. The Gospel of Judas says this: that Judas and Jesus really were in a plot together. They were in a conspiracy together. And the Gospel of Judas says that Jesus was not really betrayed by Judas, but Judas is a hero because Jesus wanted Judas to betray Him.
Well, that is rather interesting, isn't it. What could Jesus accomplish if he was just a good man wanting Judas to betray Him and ended up dead? That doesn't quite make sense, does it. The best dates for the gospel of Judas, if you look at it through carbon 14 dating, if you look at it through the ink on it, the best dates are the fourth century. Are you willing to take a document written in the fourth century as a copy of a copy of a copy, when you have eyewitness accounts of Who Jesus really is, written in the first century?
Let's suppose, for example, that there is a history of the United States that is written, and that history of the United States was written three or four hundred years after the Declaration of Independence, written in the twenty-first century. And let's suppose that five hundred years goes by, and a thousand years go by. Let's suppose that Jesus doesn't come and somebody is looking back at the history of America. They see a revisionist history of America written totally differently, but it is written three hundred forty years after the Declaration of Independence. Would you reject the authentic creditable writings of Abraham Lincoln? Of George Washington? Of Ben Franklin? Of Thomas Jefferson? To accept something written three or four hundred years later? You would say, "Absolutely not! That's crazy!"
But yet, those that try to recast Christ. Take a look at a gospel that was written, the best copies we have are written hundreds of years later after the event.
Peter was certainly right. 2 Peter 1:16. Unless you really understand Who Jesus is, and the claims He has on your life, and unless you have a personal encounter with this living Christ, Christianity is nothing more than one of multiple man-made creeds in human religion. The difference between Christianity and anything else is that Christ claims to be divine. He claims never to have a beginning and never having an ending. In here, Peter speaking about New Testament Christianity says this: For we did not follow cunningly devised fables when we made known to you the power and coming of our Lord Jesus Christ, but were eyewitnesses of His majesty.
The gospels were written in the first century by those that were eyewitnesses of His majesty. Sure there were other gospels written. Sure there were Christian heresies in the second and third centuries. But Peter, James, John were all eyewitnesses of this Christ. The New Testament is an eyewitness account of the real birth of Jesus, the real life of Jesus, the real miracles of Jesus, the Jesus Who could change lives and forgive sin, the Jesus that really died, the Jesus that transformed lives.
  • Jesus is a real Savior Who really forgives sin.
  • Jesus is a real Savior that really brings peace to heart.
  • Jesus is a real Savior that really brings hope to our souls.
  • Jesus is a real Savior that really brings courage to our lives.
  • Jesus is a real Savior that really has the power to make us whole.
He's not a make-believe Savior. He's not a moral ethical teacher. But He is the divine Son of God that can change our lives today.
On night I was preaching on Christ in an Eastern city. At the end of the meeting a man came up to me. He was a businessman dressed in his pin-striped suit, trying to impress. He was carrying his black leather attache case, and as he came up he was quite furious. He began loudly talking, waving his finger. I stepped back. He was quite aggressive. He was about five six, five seven, but he kept pointing his finger and I just kept stepping back a little. I was tired, I was exhausted. I had just preached. He was saying something like this: "Christ is not divine! There were many so-called messiahs back then. You can look at the early writings and you will find many people believed in a messiah. Christ wasn't divine. The church composed the New Testament." He was trying to impress the people standing around me.
Now, I don't mind honest questions, but I had no time to spar verbally with this man who didn't want answers but only wanted to argue. I was tired anyway, and I shouldn't have done what I did, but did it. Standing next to me was a friend of mine, Bucky. Bucky was six feet, two. He weighed about two hundred and he was solid muscle. He was kind of a combination of Hulk Hogan, Arnold Schwartzineger and Charles Atlas. This guys just rippled. He had muscles bulging from shirt.
I need to give you a little background so you can understand the story and understand what the preacher did. Bucky drove up to the evangelistic meetings many weeks before with his motorcycle gang. Five or six or eight of the motorcycle gang would come in and sit in the back. The first day I had very good interest but I don't know if they were running from the police or what. A religious meeting was a good place to hide. But one night when I preached on Jesus, Bucky knelt down on the floor and cried like a baby. After the meeting he came up and hugged me, and I thought I would never recover. He lifted me and cracked my back. It felt kind of good when he cracked it. I just hoped he didn't break any bones. We developed a real bonding and a real good friendship and he'd give me a high-five after the meeting and a hug. He accepted Christ. He was standing right next to me when the little guy was arguing and putting his finger right up next to my nose. Now, I was tied, and I shouldn't have done it, but I said to Bucky something like this, "Would you take care of this guy for me?" The guy began to shake. He now thought that he was my bodyguard. But I was just having a little fun with him. Bucky looked down at him and said something like this, "Sir, you can be very thankful there is a real Jesus that transforms people's lives. Because if there were not, I'd probably take you out in the back alley. But since there is, and since I have come to that Christ, and he has changed my life, all I want to do now is reach out voice and embrace you."
How do you argue with that? How do you argue with a Christ that can put marriages together. How do you argue with a Christ that can take the guilt away and give you peace in your life? How can you argue with the Christ that can give you comfort and hope when a child is dying. How do you argue with a Christ that transforms you from that angry bitter person that you once were. How do you argue with a Christ that gives you hope of eternal life and a sense that there is something indeed beyond the grave?
You see, even writers in the first century, non-Christians, Jewish writers, Roman writers and Greek writers noticed that there was something different about this Christ. Something about this Christ that could change lives. You see, you can never meet Christ and really remain the same again. Even ancient secular historians who didn't believe in Him as the Messiah acknowledged His incredible power to transform lives. You may not be aware, but not only do the gospels speak about Jesus; Matthew, Mark, Luke, and John. But secular historians of the day speak about Him.
Let me give you some examples. The second century writer, Tutonius. He wrote in 117 AD. He was the chief secretary for the emperor Hadrian. Now, Tutonius had access to the Roman Imperial records. After the death of Christ in 33 AD in 117 Ad, one of the earliest records we have of Christ, here is what Tutonius writes. "Because the Jews at Rome caused continuous disturbances at the instigation of the Christ, Claudius, the Emperor expelled them from the city." Now, what were the disturbances that the Christians were causing? They would not offer incense to the Emperor's image. And they caused such a disturbance that Claudius sent them out of the city. These Christians were willing to face death. They were willing to leave their homes. They were willing to leave their possessions and their jobs behind According to the secular historian. What power this Christ must have had! People left their families behind, their homes behind. They were willing to face death. Why? Because they believed He was more than a good man, mor than an ethical teacher. They gave their total lives to Him. They sensed that this Jesus did not simply demand their time and their energy, but their all.
Josephus was the greatest Jewish historian that ever lived. He lived in the first century, at the time of Christ. Now what motivation would a Jewish historian have who doesn't accept Christ but writes about the miraculous work of Christ. Josephus is not accurate, it doesn't make any sense at all of why he would fabricate a story. He was a Jew. He never accepted Christ as the Messiah, but he wrote in the first century. Here's what Josephus said. "Not only do we have eyewitness accounts in Matthew, Mark, Luke and John, but we have Roam writers who write about Jesus. We have Greek writers, Thalus who write about Jesus. We have Jewish writers who write about Jesus." Look at Josephus - "Now there was about this time, Jesus, a wise man, if it be lawful to call him a man, for he was a doer of wonderful works, a teacher of such men as receive the truth with pleasure. He drew over to him both many of the Jews, and many of the Gentiles. He was [the] Christ; and when Pilate, at the suggestion of the principal men among us, had condemned him to the cross, those that loved him at the first did not forsake him, for he appeared to them alive again the third day, as the divine prophets had foretold these and ten thousand other wonderful things concerning him; and the tribe of Christians, so name from him, are not extinct at this day." "He is the Christ. He can change your life." What a powerful testimony from a Jewish historian.
You know, the Da Vinci Code read by forty million people, will come out this week. Essentially said that the idea of the divinity of Christ, that the Christ was divine was a heresy that came into the church in the fourth century brought in by Constantine. In the whole idea of the Da Vinci Code is that Jesus was married to Mary Magdalene, and Da Vinci painted the picture of the Last Supper, that pictured a feminine John and it was really Mary who Jesus' wife. In the whole thesis of that novel that weaves fiction with some semblance of the truth from time to time. It's hard to find when you read. The whole thesis is this, that Jesus really is not divine. That was just introduced by Constantine in the fourth century.
Well, how do you account for eyewitness accounts of Matthew, Mark, Luke and John that say He is divine? How do you account for Roman writers and Jewish writers amazed at this living Christ?
Let me give you an amazing example. There is a roman writer called, Quin. Quin the Younger and Quin the elder. Quin the elder is known for writing letters. He wrote about ten thousand letters and they're put in a number of books, volumes. When he writes about the Christians, the Christian believe Jesus is divine in the first century. Why give up your family, your friends and your homes for this Christ? Why do you die for this Christ? If all you are doing is dying for a good cause, it doesn't make any good sense at all. But here's what he writes during the early second century: "They the Christians were in the habit of meeting on a certain sixth day before it was light. When they sang in alternate verses a hymn to Christ as a God." You see, even the secular historians had to admit that the Christians believed the Christ was God.
The devil has a major attack to destroy Who Jesus is. The gospel of Judas as a Da Vinci Code undermine the integrity of the Christian faith. But Jesus was genuinely the Son of God. His offer of pardon and peace for you and me today is real. His offer of forgiveness is forever for you and me today is real. His offer for mercy and miracles for you and me today are real. His offer of grace and growth and happiness for you is real.
Was Jesus really for real? That makes all the difference in a church outside Chattanooga at McDonald Road today. Let the witnesses of the New Testament source speak. Let the voice from the past echo in our ears. Let the narratives a thousand years old come true. Come with me down the crowded streets of Jerusalem and meet the man, Blind Bartemaus by name and ask him. "Is Jesus for real?" And Bartemaus would answer, "This I know. I once was blind, but now I see, I see! My wife, my family my friends. All of life is new to me." Is Jesus real? Come with me to meet paralyticwho has been paralyzed for thirty-eight years, shivering by the pool of Bethesda. Watch as he leaps and runs and sing praises to Jesus' name. Is Jesus for real? Ask the paralytic. Is Jesus for real? Come with me to meet the woman who had the issue of blood, hemorrhaging for twelve years. She was penniless and poor and poverty stricken. In a desperate touch she reached out and touched the hem of Jesus garment and new life flowed through her body. Is Jesus for real? Ask her if He's real. Is Jesus real? Come with me to meet an affluent Jewish businessman, Jairus and note how he tells how his own daughter has died. And Jesus spoke and raised her to life again. Ask Jairus and he will say to you, "He must be divine. He raise my daughter from the dead." Matthew, Mark, Luke and John are New Testament accounts eyewitness stories that Jesus is the only place to be. Is Jesus divine? Is He the divine Son of God that can change your life and mine. Is His offer of forgiveness real? Is His offer of power real? Go to Mary and Martha and watch them as they embrace their brother, Lazarus. Is He divine? He raised Lazarus from the dead. This divine Jesus Christ is transforming men and women today.
Just a few weeks ago, I was in Juarez, Mexico. You know, it's one thing to look at that barbed wire fence from the American side of the border. But it's another thing to look at it from the Mexican side of the border. Juarez is an amazing city. It's a rather nice city. But it's a city is a jumping off place for illegal immigrant coming to America. It's also a city where the drug- runners often build underground tunnels, and millions of dollars of drugs are smuggled every year through Juarez.
I was holding a meeting there a few weeks back. Three, four thousand people coming and my host said, "Mark, you've got to meet somebody. You've got to meet Johnny." That's not his real name. "You've got to meet Johnny." "Hey Johnny, what's up?" He began to talk. He said, "Mark, my life has been changed by this Christ." "Tell me the story."
He said, "I was a drug-runner across the Mexican border. Running drugs. I was up at Las Vegas on a drug deal, Pastor. The drug deal went bad. A guy pulled out a gun and shot me in the stomach. I lay on the concrete ground bleeding to death. He took off with the money. I crawled to my car, got in my car in some way, drove to my mother's place in Las Vegas. I came staggering into the house and fell on the couch, the blood pouring out. My mother said, "I'm going to take you to the hospital." I said, "Mom, if you take me to the hospital, I'll go to jail. I'm not going to any hospital."
Johnny fainted on the couch and his mother picked him up and finally got 911 and they rushed him to the hospital. He lived. When he got out of the hospital they took him to jail. After serving time in jail, he said, "I'm going back to Mexico or else they'll put me in jail agin. So, it's back to Mexico."
Hardened drug-runner. A criminal. Gang warrior. But he met an Adventist neighbor who began to talk to him about Jesus, how Jesus could give him a new life, how Jesus could give him peace, how Jesus could transform his life. One day Johnny said, "Lord Jesus, I believe that you can do for Me what you've done for others." And he said, "Pastor I'm not perfect. But I'm not the same I was three years ago. I'm not the same I was five years ago. I'm not the same I was ten years ago. You can never meet Jesus and be the same."
You can come to the Adventist church Sabbath after Sabbath, and you can sing the hymns and you can mouth the words, and it can make little difference in your life. You can memorize all the doctrines and be a defender of the faith and it can make little difference in your life. You can argue about the Sabbath. You can argue whether it's right or wrong to do this, that or the other thing. It can make little difference in your life. You can be brought up in an Adventist home, you can go to Adventist schools, you can have it all right in your head but the difference between the head and the heart may be the difference between eternal life and eternal loss.
Have you ever come to this Christ personally? Have you ever sensed His claims on your life? Have you ever said, "Lord. The essence of it all is knowing Him. Lord I want to know You. I want to know You. I want my life transformed for You by You. I want the forgiveness and the power and peace and the joy and the freedom from guilt and a sense of security that only You can offer.
In the quietness in your own way, in your own heart why don't you say, "Lord, the evidence is overwhelming. The eyewitness accounts are sure. I commit my life to you today now and forever. Amen."
Oh, my Father, we are reminded again today that the essence of Christianity is Jesus. We are reminded again today through You word that your Son Jesus and His offer of eternal life and forgiveness and pardon and power is real. Deep within our hearts we open our hearts to You today. We want an encounter with You today. We want religion to be something more than an intellectual head trip. We want to experience You personally deep within our hearts. And we want to be changed by You grace.
Thank You, Lord and we accept you by faith. You enter our minds and hearts. Transform us and make us anew, In Jesus' Name, Amen
 Hymn of Praise: #608,  Faith is the Victory
Scripture:  Roamns 8:37
Hymn of Response: #523,  My Hope is built on Nothing Less


Email us at our Sermons Contact Page
McDonald Road Sermons converted to HTML and
last updated 16/05/06 by Bob Beckett.

The Time is Short

Sermon delivered May 6, 2006 by Pastor Donald J. Gettys

McDonald Road Seventh-day Adventist Church

McDonald, Tennessee

Biblical quotations are from the New International Version NIV unless otherwise noted. Divine pronouns and titles are capitalized.

Time is Short

(RealAudio Version available)
We face the most dangerous times. Matthew 24:21 speaks of the last days: For then shall be great tribulation, such as was not since the beginning of the world to this time, no, nor ever shall be.
  • Today Nuclear War is probable. Iran is now nuclear. This jeopardizes life as we have known it.
  • Today Destruction from Tsunamis, floods, mudslides and Hurricanes is increasing at record levels. The 2005 hurricane season produced more deaths and destruction than the previous 10 years of hurricanes combined!1
  • Today Famines devastate the world. The area of the earth afflicted by drought has more than doubled since the 1970's.2 Our planet is sick.
  • Today major Earthquakes and volcanos are overdue.
  • Today Epidemics are looming over the world. plagues like bird flu are "a threat worse than Terror"3 Our worst nightmare is about to happen.
  • Today the Weather is hot. Did you know that 19 of the 20 hottest years have occurred since 1980.4 Global Warming is looking like a fact. "Global warming may be rapidly approaching a point of no return... The warming process may be irreversible."5 Numerous Polar bears are drowning as their icy turf melts under their feet.
  • Today Terrorism generated by religious groups is totally out of control. It spreads like a black storm over the civilized world. VIOLENCE is a sign of the nearness of Jesus coming. Revelation 8:13 (NLT) says: Then I looked up. And I heard a single eagle crying loudly as it flew through the air, "Terror, terror, terror to all who belong to this world because of what will happen" The word Woe in the KJV is called terror here. Zealous Muslim terrorists behead Christians because of a cartoon picture. France is Burning as barbarians try to bring down a whole empire like the hoards of barbarians conquered Rome. The soaring Muslim population of immigrants invading Europe are like a rapidly expanding fifth column.6
  • Today America seems to be in the process of vanishing away. We should be alarmed at our math and science scores. "For every engineer hired in this country 11 (will) be hired in India; of the 120 most costly chemical plants built around the world recently, one is in the United States and 50 are in China. Universities in China graduated more than 600,000 engineers last year, compared to...only 70,000 in this country."7
  • Today Our Climate is Crashing. Chunks of ice the size of small states calve from the arctic and Antarctic. Cruse Ships will soon take you to the North Pole which may soon be seasonally ice free. Sea levels could rise by 10 to 20 feet. If most ice melts, sea levels could rise by 220 feet.8 Thirteen of the twenty largest cities in the world currently exist at sea level.
  • Revelation 12:12 Woe to the earth and the sea, because the devil has gone down to you! He is filled with fury, because he knows that his time is short. The Spiritually wise come to the conclusion that time is running out fast. The seventh millennium is upon us.
    Consider some facts: Did you know that the # 1 killer of young Americans age 25 to 44 is HIV and AIDS? Aids has now surpassed accidents as the leading killer of our young adults. (AP, CNFP 13195 B3) There are now approximately 3000 people walking around the greater Hamilton County area that are infected with HIV--cnfp3595 But only 12% know they are infected. Matthew 24:7 There shall be famines, and pestilences, and earthquakes, in divers places. Pestilences are epidemics which are fatal contagious diseases.
  • Today War continues to kill millions. Our modern diplomats struggle in vain to achieve peace. There are now 50 active wars going on in the world. Most who die are spiritually lost. In Africa the natives have fought for years over cattle rustling and tribal disputes. Until recently the warriors carried only knives and spears. Today, however they are armed with everything from machine guns to rocket-propelled grenades. It is a quantum leap from spear points to AK-47's. One AK-47 costs 10 cows. Africa has rapidly changed!9
Luke 21:23 But woe unto them that are with child, and to them that give suck, in those days! for there shall be great distress in the land, and wrath upon this people.
Can you imagine the fact that 39 million people in our world are starving to death right now? In Angola, Rwanda, Sudan, Liberia, Somalia, Mozambique, Haiti, Afghanistan, Bosnia, etc.10 The whole world is in a crisis and yet we spend our time absorbed with who the survivor will be. Our desperate need is to spend time with Jesus. To make sure of our salvation.
Things are changing so fast we hardly seem to notice. Take for instance when I was a boy (1950) only 6% of American children lived in a home without a father. That was to be expected because we had just emerged from WWII. Today "half of all kids in America will sleep in a house where their biological father does not live."- Week, April 7, 2006 p. 12 As a result of these fatherless homes, and other evils, kids are growing up half wild. Malachi 4:6 predicts the presence of bad fathers in the last days.
The absence of fathers contributes to a lack of love and discipline and morality. Teenagers now account for 25% of ALL violent crime in America.11 The last thing we need in America is a population surge of teenage boys growing up in a single parent home, and yet that is exactly what we have. The mother of most fatherless homes has to work and the kids largely grow up by themselves.
Did you know that just in nearby Atlanta one in every 18 students in grades 9-12 carried a gun in the past month! Guns kill more US teenagers than ALL natural diseases combined! In just 16 years (since 1979) more than 50,000 children (under 20) have been killed here in America! That is more casualties than in the whole Vietnam War!12
We are surrounded with Violence. By the time a youngster is 18 he or she will see over 200,000 acts of violence including 18,000 make-believe murders on TV alone.13 They do what they see. Somebody must take action before the whole of society goes down the drain.... Sewer would be a better word! Atheistic TV producers seem to be in charge of educating our vulnerable children. Toy manufactures invent evil toys and evil games. No one seems to be able to stop our immoral slide toward self destruction. No one!
Except the church. The church is doing something. And here is one of the greatest signs of the times in my life time! Religion is beginning to stand up for the right. Today you are witnessing one of the greatest changes in the lifetime of everybody sitting here today. America is right now in the process of shifting from liberal secular values to conservative values. The great pendulum is fast swinging to the right side.
You have heard about the Republican contract with America. Powerful organized Conservative Christians propose to make America into a Christian nation thereby turn this nation around. And they are becoming successful. They represent the most successful penetration into the government of any religious organization in this century. They are growing fast. They are the Walmart of American politics. Both Catholics and Jews are included. The wall of separation of church and state is crumbling.
All this is predicted in the book of Revelation. If you look at Revelation 13:3--you see that God predicts a very religious world just before the second coming of Jesus. Whole World followed the beast. Men worshiped the beast. Verse 8: ALL will worship the beast (except Christ's followers). 15: All who do not worship will be killed. So what you have is a global political authority that is controlled by religion. A kowtowing beast controlled by woman riding on its back.
    The Christian Coalition's goals:
  1. Re-Establish Prayer in public places.
  2. Restrict Abortions
  3. Establish IRA's for mothers and homemakers.
  4. Abolish the National Endowment for the Arts
  5. Abolish the Corporation for Public Broadcasting
  6. End the Department of Education
  7. Amend the Constitution.
  8. Bring the 10 Commandments back to public view.
14
These are all worthy goals. But Their goal is to "impose" their version of a Bible-backed morality on the public at large.15 They want no condom distribution in our schools, no sex education classes, no homosexual adoptions, no legal gay marriages. Now many of these goals sound great don't they? But, do you see any danger? The state must stop making laws against religion. And religion must not use government to enforce its desires.
The first annual ten commandment day is tomorrow. Adventists fully support all 10 of God's holy commandments. This includes the fourth which requires the observance of the seventh day of the week as God's true Sabbath. That is Saturday. Not Sunday. We urge everybody to keep all 10 commandments. I don't know the ultimate purposes of the national 10 commandment day. But I wonder if the ultimate objective is to bring about a law to enforce church attendance on Sunday. The bottom line is that all this could be a set up to accomplish a Sunday law? It is very interesting that our U.S. Supreme Court now has a majority of Catholic Justices who could authorize such a law. Bad things happen when religion controls government.
Notice Revelation 17:3 A prostitute riding a beast! The wicked woman is a church. Not God's true church. No! This is the fallen false church of the last days. This sounds very much like the movement that we see trying to control the government today. It looks like the woman is about to mount the beast again. This time, for the last time. Just as the rider on a horse controls the actions of the horse, just so when the church rides on the back of the state, they control direction of the state. Don't look for conservative Republicans to protect us from religious persecution in the end time because at that time the government will be controlled by the apostate church.
You know what is wrong with the whole thing? We don't solve the moral problems of a nation by looking to government. We must look to Jesus.
  • As bad as the federal deficit is, our most pressing deficit is the lack of time spent with Jesus in effective prayer and meaningful Bible study.
  • What we need is not more laws but more of the character of Jesus written inside our hearts.
  • The greatest need today is not for an amendment of our constitution, but for a amendment of the heart.
  • Only Jesus can give us a new heart.
Mark Finley tells this story: It was good Friday morning in 1987. Debbie Williams and 6 other friends jumped out of an airplane at 12,000' in the clear skies near Phoenix. These experienced skydivers planned to link up into a mid air formation. Debbie was one of the last ones out and had to catch up to the others. She went into a fast dive but she miscalculated her speed and slammed into another diver at a 50 MPH impact. She was knocked unconscious. She then fell out of control like a limp rag doll. Her parachute was unopened. She was doomed to die. (Channels, spring/summer 1995) As she fell down she went past her Jump Master- Gregory Robertson. He saw the blood covering her face. Immediately he went into a NO-LIFT dive. Head tucked into his chest, toes pointed, arms flat. Now he was diving at 180 MPH. Debbie seemed to be falling away from him. He must reach her and pull her rip cord.
He kept going as the horizon came up to meet him. It took all his years of skill and practice to maneuver his body and still maintain top speed. After what seemed to be an eternity he finally reached her. He reached out and grabbed Debbies reserve cord. Yanking it hard, he quickly moved away. Her chute opened and she began drifting slowly toward the ground. At 2000 feet, only 12 seconds from impact, Greg managed to open his own chute. Debbie and her savior both survived. Debbie recovered fully from her injuries. She is so grateful to Greg, her superman, who miraculously snatched her from a fatal impact.
Today, We are like Debbie. We are rushing headlong toward an impact with the events of the end of time. We can see that the last moments are indeed rapid ones. This old world is plummeting toward ground Zero! Every one of us knows that we do not have much longer. The tragedy is that almost everybody we see is just like Debbie... Oblivious to the true dangers of the times and events that are about to happen. Asleep. Many do not even have a parachute on. Their Christian experience is languishing.
But the good news is that even at this late hour, God has planned a mid-air rescue. Jesus is coming to save us. We will meet Him in the air. There are not a variety of parachutes around. There is just one: Jesus Christ! He died on the old rugged cross and completely paid for your sins. Put on Jesus. Accept Him. Like Debbie's parachute, when His robe of righteousness is placed over us, we are saved!
Are you yearning to be saved? Take one of the decision cards you will find in the back of your pew. Make the decision that Jesus wants you to make. Hand it to a pastor or put it upside down in the offering plate. Let's get ready for Jesus to come.

Endnotes:
1. The Week, December 9, 2005, Washington Post.
2. Time, April 3, 2006, p. 30.
3. Newsweek, Ostober 31, 2005, p. 46.
4. Week, April 17, 2006, p. 16.
5. US News and World Report, April 10, 2006, pp. 34-37.
6. National Conservative Weekly.
7. CNFP 10-20-2005, "Call to Action" - Editorial by Michael Tackett
8. Time, April 3, 2006, p. 39.
9. USNWR, May 22, 1995, p. 45.
10. CFP 2795.
11. Paul McNulty, CFP 3495.
12. Friendly Exchange, Summer, 1995, p. 24. (magazine of Farmer's Insurance Companies)
13. Ibid.
14. Time, May 15, 1995, p.31.
15. Ibid.

 Hymn of Praise: #7,  The Lord in Zion Reigneth
Scripture:  Revelation 12:10-12
Hymn of Response: #213,  Jesus Is Coming Again
204DJG51995


Email us at our Sermons Contact Page
McDonald Road Sermons converted to HTML and
last updated 10/5/06 by Bob Beckett.

SMALL THINGS CAN BE ENORMOUS

Sermon delivered October 23, 2004 by Pastor Donald J. Gettys

McDonald Road Seventh day Adventist Church

McDonald, Tennessee

Biblical quotations are from the New International Version NIV unless otherwise noted. Divine pronouns and titles are capitalized.

Little Foxes


SMALL THINGS CAN BE ENORMOUS
I would like to speak with you this morning about little foxes--about small things, little things. One of our member said, "I've got coyotes behind my house here in Collegedale over here about a mile. Little foxes, little things. Are they important? You know, small things can be enormous. English King Henry the eighth sent a delegation led by the Earl of Wiltshire to patch up things between England and the Roman Catholic Church. The Earl went and prostrated himself before the Pope, who was sitting on his mighty throne, and he prepared to kiss the Pope's toe, which was proper at tyhat time. The Pope thrust his toe forward to receive the kiss. However, the Earl of Wiltshire had brought along his dog. The dog misinterpreted the actions of the pope, and as he saw the foot advancing toward its master, the dog dashed forward to defend his master. And instead of a kiss, the Pope received a dog bite to his toe!
The Papal guard was enraged and killed the dog. This enraged the Earl of Wiltshire who got up in a huff and returned to England. This led the King of England to break relations with the Roman Catholic Church and to align itself with the Protestant movement in 1534. In a further move away from the Roman Catholic Church, King James had the Bible translated into the English language. I doubt that we would have the King James Bible today, had it not been for a dog biting the Pope's toe! Little things can make a big difference, a big difference.
Think of a little nail in your tire as you are driving home from work, in a dark night in a pounding heavy rain. It makes a difference, doesn't it? Think of one pebble in your shoe as you are out on your morning stroll.
Come to the Song of Solomon in your Bible. Song of Solomon 2:15 says, Catch for us the foxes, the little foxes that ruin the vineyards, our vineyards that are in bloom. You see, the little foxes enjoy grapes just like Jesus enjoys fruit in your life and my life. And these little foxes can take away that fruit. So, guard yourself against the little things of life.
During the American Revolution, anti-British sentiment was so high that at one point the Continental Congress entertained a motion that we not be an English speaking country, but a German speaking country. And do you know that motion was defeated by one little vote! Had it not been for that vote, you and I would be speaking German today.
Did you know that Adolf Hitler was elected as leader of the Nazi Party in 1923 by one vote!

     Little drops of water,
     Little grains of sand,
     Make the mighty ocean,
     and the pleasant land.

     So the Little moments,
     Humble though they be,
     Make the mighty ages,
     of Eternity. -- (Julie Carney) 
In the performance of the lowly duties of life, you are forming a character that will stand for eternity. It is the little things that form our character. I've never been tempted to go out and kill somebody, and I doubt if you have either. But have you ever been tempted to do a little thing? "Whatever your duties may be, do them nobly and faithfully, realizing that all heaven is beholding your work."1
Do not under-rate the importance of little things because they are little. By action and reaction these little defects accumulate and bind themselves together become like rods of steel and you can't break away from them. So be careful, guard the little things that first start before they become welded into your life and you can't get rid of them. "That little action, that unguarded word, repeated, becomes habit...and habit constitutes character." 2 So be careful, guard the little things, the first starts, before they become welded to your life and you cannot get rid of them. Little things can destroy your soul.
LITTLE THINGS CAN DESTROY OUR SOUL
Ecclesiastes, back about two pages in your Bible. Ecclesiasted 10:1 (New Living Translation) says, Dead flies will cause even a bottle of perfume to stink! An ounce of foolishness can outweigh a pound of wisdom and honor. A little bit of folly, and it is all over. There are little things in our life that can cause disastrous effects upon our eternal future.

  • TELEVISION.One could be television. Every murder, every violent act you or a child witnesses on television is like a small, minuscule weight placed upon a balance scale, and at one point in life the scale can be tilted in the other direction.

  • OUR WORDS.Come over here to James, in the New Testament. James 3:4-6. Take ships as an example. Although they are so large and are driven by strong winds, they are steered by a very small rudder wherever the pilot wants to go. Likewise the tongue is a small part of the body, but it makes great boasts. Consider what a great forest is set on fire by a small spark. The tongue also is a fire, a world of evil among the parts of the body. It corrupts the whole person, sets the whole course of his life on fire, and is itself set on fire by hell. One little word can cause a soul to lose eternity. So guard your words.

  • GUARD YOUR THOUGHTS.Another thing to guard would be your thoughts. Thoughts are not very big I guess. I've never seen a thought. I assume they are not very big. But what a difference they can make! Proverbs 23:7 (KJV) says, For as he thinketh in his heart, so is he.
    A Memphis newspaper had an article about a little mole. The mole burrowed into a newly rebuilt dike along the Red River. This mole did his work. And during a flood, that portion of the dike failed, and there was a huge disaster.
    Just as that little mole caused a dike to collapse, just so a small but evil thought that is allowed to run freely throughout your mind will erode yopur mind and will eventually result in a breakdown of morals. When a flood of temptation comes upon you, your dike is weakened, your resistance is not what it ought to be, and it will cause a crumbling of your spiritual foundation.
    A little worm, let's suppose, enters your computer and your whole hard drive is gone! It won't work. One day the North American Defense Command headquarters got a computer message that the Soviet Union had fired dozens and dozens of intercontinental ballistic missiles at the United States. They were one the way. Immediately almost 100 bomber crews prepared for take off. Missile crews prepared to launch their deadly atomic payloads. Secret codes were placed in boxes so that they would launch. Our Submarines were all alerted. Finally, with only three minutes before they launched everything, it was found that a small component worth 46 cents had failed in a government computer, and the strike was called off. Little things make a huge difference in our lives. Guard the little things.

  • LITTLE SPIRITUAL NEGLECT.A little sleep, a little slumber, a little folding of the hands to rest and poverty will come on you like a bandit and scarcity like an armed man. -- Proverbs 24:33.
    You sleep in a little bit, and a little more and you just don't have time for Bible study anymore. You are too tired to pray. You neglect your family worship. They next day it becomes easier and easier to set the Bible aside, and the first thing you know, you don't have family worship anymore. Guard the little things. Eventually you will be in danger of an entire spiritual breakdown. You may think this is just a drop in the bucket. No, spiritual disaster starts by a little neglects.
    We all want others to judge us by our great actions. But the truth is that we prove who we really are by our small actions. For example, what do you remember President Clinton for? How do you remember a pastor who has been ministering for 40 years, spectacularly, and has one careless act? His reputation is ruined. We are judged by little things, small things. And yet our eternal reward is based on the small things that are well done. It is the conscientious attention to what the world calls little things that makes the great beauty and successes of life.
    "Little deeds of charity, little words of kindness, little acts of self denial, a wise improvement of little opportunities, a diligent cultivation of little talents; these make great men in God's sight." 3 Those litle things.
    "Success in this life, success in gaining the future life, depends upon a faithful, conscientious attention to the little things."4 The humble, lowly duties of life may seem trivial but they work to perfect our character.
    "People say "a stitch in time saves nine!" Most of us could do some stitching in our lives, and trimming up. We are not guilty of big public sins, but we've got little things that are working on us. It's the little foxes, the little defects, the little neglects, the little deficiencies in life, the little dishonesties, the little departures from the principles Christ has given us, that blind the soul and separate it from God." 5 Little things become larger and larger and soon they get out of control. We have to nip them in the bud. We have to stitch up that tear before it rips our life away from Jesus.
    So never let your guard down, especially on the little things. We get overweight one teaspoon at a time. One little neglect of diet, one little neglect of jogging, and you don't diet or exercise anymore.

  • GUARD YOUR EYES.We need to guard our eyes: what we look at. You know, what you look at, you will eventually become. A young husband came to me one time and told how he had once allowed his eyes to view an Internet site that showed impure, immoral images. He said, "Once I did that, I was attracted to that, and I did it again and eventually kept doing it." This small trespass upon a rule that he had set for himself led him further and further down a path of sin. Each time it became easier and easier for him to slip into pornography. His purity of life gradually changed, causing the breakup of his home, and divorce, and his life. There is no such thing as a little thing.
LITTLE THINGS CAN BE GOOD THINGS
Let's talk about the good of little things. You know, Sir Isaac Newton was led to his special, spectacular ocular discoveries by watching a little child playing with a soap bubble. And he made his humongous discovery. Little matters, little details can be great things.
Luke 16:10(KJV) says, He that is faithful in that which is least is faithful also in much: and he that is unjust in the least is unjust also in much

  • BIBLE STUDY.Every time you read the Bible, you make small deposits to your spiritual bank account. These add up, because God gives compound interest. And these little things will make a big difference. And someday they will give you the character of Jesus.
    "Never underestimate the importance of little things. Little things supply the actual discipline of life. It is by them that the soul is trained that it may grow into the likeness of Christ, or bear the likeness of evil. 6
  • A GODLY CONSCIENCE.Your conscience is just a small thing, yet listen to it. It speaks to our heart with a still small voice, but it is a vital voice. Listen to it. Husbands, listen to your wife when she says, "I don't think that's a good idea." Listen to the voice of your husband as he tries to help you with spiritual matters. In Elijah's day God sent a strong wind and a powerful earthquake and a raging fire, but the LORD was not in the fire. And after the fire came a gentle whisper. - 1 Kings 19:12). And that's what God was in. Listen to your conscience. And God speaks to us through our conscience. Listen to your conscience.
  • HONESTY.Honesty is another way. Please be honest. If you are dishonest you can't be a good Christian. If you are dishonest with yourself, with others, or with God, you cannot be a good Christian. When Grover Cleveland was a boy he noticed that the neighbor's chicken kept coming over to the Cleveland yard and laying an egg. And every morning he would get the egg and take it back across and give it to the neighbor. He was an honest boy, and he became an honest man. His faithfulness in little things led to his becoming President of the United States. Be honest. There are no menial jobs, there are only menial attitudes toward the things of life. It's the trivial things of life that determine the great things of life. Many are deceived as to the importance of these little things.
  • CHARACTER.Ecclesiastes 9:10 says Whatever your hand finds to do, do it with all your might. If you are going to do something, no matter what it is, do it well or don't do it at all. It's the little things of life that develop our character. So be aware of the little things of life.
    Was the widow's mite really insignificant? Was Daniel's Little Horn of Daniel 8 trivial and unimportant? Eve just ate one little apple. It probably didn't even weigh five pounds. Did it make a difference? It was just a little thing. In spiritual things there are no minor leagues.
One day I walked through tall grass. The next morning I was itching from dozens of Chiggers. It was the first time I have ever known there was such a thing as a chigger. (Chiggers are very small insects that have the habit of burying themselfs in your skin and they make you itch.)

    The chigger is no bigger
       Than the end of a small pin;
    But the itch that he raises
       Simply amazes,
    And that's where the rub comes in! 
Watch out for the tiny things in life that might spoil your testimony. Guard that hasty word, that burst of temper which may bring defeat. Put on the whole armor of God, that you will be able to stand. Do your Bible study, do your prayer life, do your witnessing life you ought to. Live life as Christ would want you to live it.
"There are few who realize the influence of the little things of life upon the development of character. Nothing with which we have to do is really small. The varied circumstances that we meet day by day are designed to test our faithfulness and to qualify us for greater trusts." 7
So be faithful in the little things of life. Honor Jesus in every action and in every word and every thought. Galatians 5:9(KJV) says A little yeast works through the whole batch of dough. I know there is bad yeast, but there is good yeast too. When you are baking bread, yeast is a good thing isn't it? Use good yeast in your life. Let the pure, holy character of Jesus permeate your entire being and change you. It will change you a little each day into the character of Jesus. You know, as pastors, we want a congregation that is like Jesus. And how do you become like Jesus? Little by little, everyday immersing yourself in scripture, immersing yourself in prayer, and doing some little thing for somebody else, living life as it ought to be lived. Those little foxes won't bother you; they will help you become more like Jesus. That is my goal in life, and I want that to be your goal too.
Endnotes:
1. Our High Calling, E. G. White, p. 228.
2. That I May Kbnow Him, E. G. White, p. 209.
3. Our High Calling, E. G. White, p. 227.
4. Christian Education, E. G. White, p. 217.
5. Pamphlet 096, E. G. White, p. 36.1.
6. Child Guidance, E. G. White, p. 129.
7. Patriarchs and Prophets, E. G. White, p. 222,223.

Sources: Adventist Review, January 26, 1989 page 5 Eugene F. Durand.

 Hymn of Praise: #2, All Creatures of Our God and King 
Scripture: Luke 16:10-12 
Hymn of Response: #492, I Would Be Like Jesus 



Email us at our Sermons Contact Page
Return to McDonald Road Sermons Index
Return to McDonald Road SDA Church Home Page
McDonald Road Sermons converted to HTML and
last updated DD/MM/YY by Bob Beckett.

http://mcdonaldroad.org/

Thursday, February 18, 2016

MUC7 Gallery website

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr' xmlns:fb='https://www.facebook.com/2008/fbml'>
<head>
<link href='http://fonts.googleapis.com/css?family=Economica:400,400italic,700,700italic' rel='stylesheet' type='text/css'/>
<link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700' rel='stylesheet' type='text/css'/>
<b:include data='blog' name='all-head-content'/>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<title><data:blog.pageName/> | (example: Themes Hive)</title>
<b:else/>
<title><data:blog.pageTitle/> | (example: Themes Hive)</title>
</b:if>
<meta content='your description here' name='description'/>
<meta content='keyowrd1, keyowrd1, etc..' name='keywords'/>
<meta content='INDEX, FOLLOW' name='ROBOTS'/>
<b:skin><![CDATA[/*
-----------------------------------------------------------------------------
  <-------------------> Blogger Template Style  <------------------>
-----------------------------------------------------------------------------
Template Name         :-> Winter | Blogger Template
Template Author       :-> Avinas /Best Theme
Template Author URI   :-> http://besttheme.net
Template Created Time :-> Saturday, January 5, 2013 (IST) Time in India
-----------------------------------------------------------------------------
  <------------->  Credit> http://besttheme.net  <------------->
-----------------------------------------------------------------------------*/
#navbar-iframe{display:none;}*{margin: 0px;padding: 0px;}
#LinkList10 h2{display:none;}
#LinkList11 h2{display:none;}
body#layout #slider{display:none}
body#layout #add-to-cart-widget{display:none;}
/*----------------------------------------------------
{--------}  Generic  {--------}
----------------------------------------------------*/
#navbar-iframe{display:none;}*{margin: 0px;padding: 0px;}
.comment-form{display:none;}#commentform{display:none;}#respond{display:none;}
/*
    960px grid system ~ Core CSS.
    6 Columns ~ Margin left: 10px ~ Margin right: 10px

    Based on the 960.gs grid system - http://960.gs/
    by Nathan Smith

    Created by the Grid System Generator - v1.04
    Learn more ~ http://www.gridsystemgenerator.com/
    */

    /*
    Forces backgrounds to span full width,
    even if there is horizontal scrolling.
    Increase this if your layout is wider.

    Note: IE6 works fine without this fix.
    */
    body {
            min-width: 960px;
    }

    /* =Containers
    --------------------------------------------------------------------------------*/
    .container_6
    {
            margin-left: auto;
            margin-right: auto;
            width: 960px;
    }

    /* =Grid >> Global
    --------------------------------------------------------------------------------*/
    .grid_1,
    .grid_2,
    .grid_3,
    .grid_4,
    .grid_5,
    .grid_6 {
            display: inline;
            float: left;
            margin-left: 10px;
            margin-right: 10px;
    }

    .push_1, .pull_1,
    .push_2, .pull_2,
    .push_3, .pull_3,
    .push_4, .pull_4,
    .push_5, .pull_5 {
            position: relative;
    }

    /* =Grid >> Children (Alpha ~ First, Omega ~ Last)
    --------------------------------------------------------------------------------*/
    .alpha {margin-left: 0;}
    .omega {margin-right: 0;}

    /* =Grid >> 6 Columns
    --------------------------------------------------------------------------------*/
    .container_6 .grid_1 {width: 140px;}
    .container_6 .grid_2 {width: 300px;}
    .container_6 .grid_3 {width: 460px;}
    .container_6 .grid_4 {width: 620px;}
    .container_6 .grid_5 {width: 780px;}
    .container_6 .grid_6 {width: 940px;}

    /* =Prefix Extra Space >> 6 Columns
    --------------------------------------------------------------------------------*/
    .container_6 .prefix_1 {padding-left: 160px;}
    .container_6 .prefix_2 {padding-left: 320px;}
    .container_6 .prefix_3 {padding-left: 480px;}
    .container_6 .prefix_4 {padding-left: 640px;}
    .container_6 .prefix_5 {padding-left: 800px;}

    /* =Suffix Extra Space >> 6 Columns
    --------------------------------------------------------------------------------*/
    .container_6 .suffix_1 {padding-right: 160px;}
    .container_6 .suffix_2 {padding-right: 320px;}
    .container_6 .suffix_3 {padding-right: 480px;}
    .container_6 .suffix_4 {padding-right: 640px;}
    .container_6 .suffix_5 {padding-right: 800px;}

    /* `Push Space >> 6 Columns
    --------------------------------------------------------------------------------*/
    .container_6 .push_1 {left: 160px;}
    .container_6 .push_2 {left: 320px;}
    .container_6 .push_3 {left: 480px;}
    .container_6 .push_4 {left: 640px;}
    .container_6 .push_5 {left: 800px;}

    /* `Pull Space >> 6 Columns
    --------------------------------------------------------------------------------*/
    .container_6 .pull_1 {left: -160px;}
    .container_6 .pull_2 {left: -320px;}
    .container_6 .pull_3 {left: -480px;}
    .container_6 .pull_4 {left: -640px;}
    .container_6 .pull_5 {left: -800px;}

    /* `Clear Floated Elements
    ----------------------------------------------------------------------------------------------------*/
    /* http://sonspring.com/journal/clearing-floats */
    .clear {
            clear: both;
            display: block;
            overflow: hidden;
            visibility: hidden;
            width: 0;
            height: 0;
    }

    /* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */
    .clearfix:before,
    .clearfix:after {
            content: "\0020";
            display: block;
            overflow: hidden;
            visibility: hidden;
            width: 0;
            height: 0;
    }
    .clearfix:after {
            clear: both;
    }
    /*
    The following zoom:1 rule is specifically for IE6 + IE7.
    Move to separate stylesheet if invalid CSS is a problem.
    */
    .clearfix {
            zoom: 1;
    }
/*----------------------------------------------------
          {--------}  Generic  {--------}
----------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}
html {
    font-size: 62.5%;
 /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
    overflow-y: scroll;
 /* Keeps page centred in all browsers regardless of content height */
    -webkit-text-size-adjust: 100%;
 /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
    -ms-text-size-adjust: 100%;
 /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */;
}
body {
    background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}
ol, ul {
    list-style: none;
}
table {
 /* tables still need 'cellspacing="0"' in the markup */
    border-collapse: separate;
    border-spacing: 0;
}
caption, th, td {
    font-weight: normal;
    text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: "";
}
blockquote, q {
    quotes: "" "";
}
a:focus {
    outline: thin dotted;
}
a:hover,
a:active {
 /* Improves readability when focused and also mouse hovered in all browsers people.opera.com/patrickl/experiments/keyboard/test */
    outline: 0;
}
a img {
    border: 0;
}
/*----------------------------------------------------
          {--------}  Theme Style  {--------}
----------------------------------------------------*/
body {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi3n-e4U__7FTAncRWZU4_Rdtt_6tEckklknpfN5FdTghSfzR687xELWInaSJ7HbpFkxXI9ccSgh_nEn6L7BSla8lWbK1RJxoyc3YsfhSMpApE0R0Lz0tI_UWXlCauYCGwKS7GB5pGu6aBf/s1600/body.png);
}
#main {
    padding-bottom: 70px;
}
/*----------------------------------------------------
          {--------}  Header  {--------}
----------------------------------------------------*/
.top {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjW8_RzbMJhwU7zEn7RufbcBu0eEnrMYZStYTHgijyLgdkSQYwuYbUSjOeKOhyE8JxvJZZQVyf9R-Kc3m9FdKmEYI4vtGyxlcVZ_-MIgkOU6Tuc7I7S0CnMUShJ6lQ0Fegn9qVkFOAF8VN0/s1600/top.png);
    height: 150px;
}
.logo {
    margin-top: 30px;
}
h1.site-title {
    font-size: 56px;
    text-shadow: 1px 1px 3px #222;
    line-height: 100%;
    margin-bottom: 10px;
}
h1.site-title a:link, h1.site-title a:visited {
    color: #fff;
}
h2.site-description {
    color: #fff;
    font-family: 'PT sans';
    font-size: 16px;
    line-height: 100%;
}
/*----------------------------------------------------
          {--------}  Search Forum  {--------}
----------------------------------------------------*/
#searchform {
    margin-top: 55px;
    width: 310px;
    float: right;
}
#s {
    background: #474a4c;
    border: 1px solid #646768;
    height: 40px;
    padding: 0px 10px;
    line-height: 40px;
    width: 200px;
    border-radius: 4px;
    color: #CECECE;
}
#searchsubmit {
    float: right;
    width: 80px;
    height: 41px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #4e4e4e;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.19), inset 0 1px rgba(255,255,255,.33), inset 0 0 5px rgba(255,255,255,.18);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.19), inset 0 1px rgba(255,255,255,.33), inset 0 0 5px rgba(255,255,255,.18);
    box-shadow: 0 1px 1px rgba(0,0,0,.19), inset 0 1px rgba(255,255,255,.33), inset 0 0 5px rgba(255,255,255,.18);
    border: solid 1px #464646;
    background-image: -webkit-linear-gradient(top, rgba(255,255,255,.26), rgba(255,255,255,0));
    background-image: -moz-linear-gradient(top, rgba(255,255,255,.26), rgba(255,255,255,0));
    background-image: -o-linear-gradient(top, rgba(255,255,255,.26), rgba(255,255,255,0));
    background-image: -ms-linear-gradient(top, rgba(255,255,255,.26), rgba(255,255,255,0));
    background-image: linear-gradient(to bottom, rgba(255,255,255,.26), rgba(255,255,255,0));
}
/*----------------------------------------------------
          {--------}  Top Menu  {--------}
----------------------------------------------------*/
#botmenu {
    height: 60px;
    background: #484b4c;
    border-bottom: 1px solid #666;
}
#submenu {
    margin: 0px 0px;
    padding: 0px 0px;
}
#submenu ul {
    width: auto;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0 10px;
}
#submenu li {
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
    color: #222;
    font-weight: 400;
}
#submenu li a {
    color: #fff;
    display: block;
    margin: 0;
    padding: 20px 10px 20px 10px;
    text-decoration: none;
    position: relative;
}
#submenu li a:hover, #submenu li a:active, #submenu .current_page_item a {
    color: #fff;
}
#submenu li a.sf-with-ul {
    padding-right: 10px;
}
#submenu li ul li a, #submenu li ul li a:link, #submenu li ul li a:visited,
#submenu li ul li ul li a, #submenu li ul li ul li a:link, #submenu li ul li ul li a:visited,
#submenu li ul li ul li ul li a, #submenu li ul li ul li ul li a:link, #submenu li ul li ul li ul li a:visited {
    color: #eee;
    width: 148px;
    margin: 0;
    padding: 10px 10px;
    border-top: 1px solid #555;
    position: relative;
    font-weight: 400;
}
#submenu ul li ul li:first-child a,#submenu ul li ul li ul li:first-child a,#submenu ul li ul li ul li ul li:first-child a {
    border-top: none;
}
#submenu li ul li a:hover ,#submenu li ul li ul li a:hover ,#submenu li ul li ul li ul li a:hover {
    color: #fff;
}
#submenu li ul {
    z-index: 9999;
    position: absolute;
    left: -999em;
    height: auto;
    width: 170px;
    margin: 0px 0px 0px 0px;
    padding: 5px 5px;
    background: #414444;
    border: 1px solid #666;
}
#submenu li ul a {
    width: 150px;
}
#submenu li ul a:hover, #submenu li ul a:active {;
}
#submenu li ul ul {
    margin: -49px 0 0 181px;
}
#submenu li:hover ul ul, #submenu li:hover ul ul ul, #submenu li.sfHover ul ul, #submenu li.sfHover ul ul ul {
    left: -999em;
}
#submenu li:hover ul, #submenu li li:hover ul, #submenu li li li:hover ul, #submenu li.sfHover ul, #submenu li li.sfHover ul, #submenu li li li.sfHover ul {
    left: auto;
}
#submenu li:hover, #submenu li.sfHover {
    position: static;
}
/* Post styles */
h1.page-title {
    text-align: center;
    margin-top: 60px;
    font-size: 28px;
}
.taxonomy-description {
    text-align: center;
    font-size: 16px;
}
article.post,article.page {
    margin-top: 70px;
    background: #fff;
    border: 1px solid #ddd;
    position: relative;
}
.format-box {
    position: absolute;
    left: 0px;
    top: 70px;
    font-size: 32px;
    color: #fff;
    width: 100px;
    height: 50px;
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjkgVkhBgjAG23r9Tk6vht1raBviWsdu6_i_vu2oCYnRe2H9EBmGDhuRUevqI2DEsmyR1u81Uxr-T3xkJrJyrIcaJUU4Z-8Gzmwaji63Yb1BdiJcngwIMUotAf8-ZBQNXIoYtnFbiyHIEoU/s1600/format.png) no-repeat;
    padding: 10px 0px 0px 30px;
}
.post-cover {
    margin: 70px 70px 70px 150px;
}
.page-cover {
    margin: 50px 70px;
}
.entry-meta {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}
.entry-meta a:link, .entry-meta a:visited {
    color: #888;
}
.entry-meta span {
    margin-right: 20px;
}
.entry-header {
    margin-bottom: 30px;
}
h2.entry-title {
    font-size: 42px;
    color: #555;
}
.media-box {
    margin-bottom: 20px;
}
/*----------------------------------------------------
          {--------}  Chat  {--------}
----------------------------------------------------*/
.chat-content {
    font-size: 15px;
}
.chat-content ul {
    margin: 0px;
    list-style: none;
}
.chat-content ul li {
    border-bottom: 1px dotted #ddd;
    padding: 8px 0px;
}
/*----------------------------------------------------
          {--------}  Quote  {--------}
----------------------------------------------------*/
.quote-content {
    font-size: 16px;
}
.quote-content p {
    position: relative;
    text-align: center;
    padding: 30px;
    margin: 1em 0 2em;
    background: #f3961c;
 /* default background for browsers without gradient support */
/* css3 */
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#eee), to(#f4f4f4));
    background: -moz-linear-gradient(#eee, #f4f4f4);
    background: -o-linear-gradient(#eee, #f4f4f4);
    background: linear-gradient(#eee, #f4f4f4);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 1px 1px 2px 0px #ddd;
    box-shadow: 1px 1px 2px 0px #ddd;
}
.quote-content p:after {
    content: "";
    position: absolute;
    bottom: -15px;
 /* value = - border-top-width - border-bottom-width */
    left: 340px;
 /* controls horizontal position */
    border-width: 15px 15px 0;
 /* vary these values to change the angle of the vertex */
    border-style: solid;
    border-color: #f4f4f4 transparent;
    /* reduce the damage in FF3.0 */
    display: block;
    width: 0;
}
.quote-content h3 {
    font-weight: 700;
    font-family: PT Sans;
    text-align: center;
    font-size: 20px;
}
/*----------------------------------------------------
          {--------}  Aside  {--------}
----------------------------------------------------*/
.aside-content {
    line-height: 36px;
}
.aside-content p {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-J5LF3VwdUrBIzvD7B-I5MrYYzrrNe4QOeYByS4dKtgJRl5FyLR4NyC9XYqbD_DyBJ2yE2lP5vU6DOPj3cS0MnBPM8Kj28g2cqjbjcRaarQpVJpSG8JZGzg4SFzV-oxEJTn3KrTffIvOK/s1600/paper.png);
    padding: 38px;
    line-height: 25px;
    border: 1px solid #dfdfdf;
}
/*----------------------------------------------------
          {--------}  Footer Widgets  {--------}
----------------------------------------------------*/
#bottom {
    margin: 0px;
    padding: 40px 0px;
    background: #434343;
}
#bottom ul {
    margin: 0px;
    padding: 0px;
}

.botwid{
    padding: 30px 0px;
    color: #aaa;
    list-style: none;
    width: 280px;
    float: left;
}
.botwid h2{
    font-size: 24px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    color: #fff;
}
.botwid ul {
    list-style-type: none;
    margin :0;
    padding: 0px 5px 5px 0px ;    
}
.botwid li{
    list-style-type: none;
    margin: 0 ;
    padding: 0;
    list-style-type: none;
    padding: 7px 0px 7px 0px;
     border-bottom: 1px solid #545454;
}
.botwid ul ul  {
    list-style-type: none;
    margin: 0;
    padding: 0px 0px 0px 0px;
    background-repeat:no-repeat;
}
.botwid ul li {
    height:100%;
    line-height:18px;
    clear: left;
    list-style-type: none;
    color: #eee;  
}
.botwid ul li a:link, .botwid ul li a:visited  {
    color: #eee;
    text-decoration: none;
    padding: 5px 0px 5px 5px;
}
.botwid ul li a:hover{
    color: #fff;
}
/*----------------------------------------------------
          {--------}  Square Banner  {--------}
----------------------------------------------------*/
.squarebanner {
    margin: 0px;
    padding: 30px 0px;
}
.squarebanner ul {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 10px 0px !important;
}
.squarebanner ul li {
    margin: 10px 20px 5px 0px;
    list-style: none;
    float: left;
}
li.rbanner {
    margin-right: 0px!important;
}
/*----------------------------------------------------
          {--------}  Comments  {--------}
----------------------------------------------------*/
#comments {
    margin-top: 70px;
    padding: 0px 0px;
}
h2.comments-title {
    padding: 10px 0px;
    font-size: 24px;
    margin: 0px 0px 20px 0px;
    color: #111;
    font-weight: 700;
    text-transform: uppercase;
}
#comments ol.commentlist {
    clear: both;
    overflow: hidden;
    list-style: none;
    margin: 0;
}
#comments ol.commentlist li {
    clear: both;
    list-style: none;
    margin: 0px 0px 0px 0px;
}
.space {
    height: 30px;
    display: block;
}
.cometa {
    padding: 1px 1px;
    float: left;
}
ol.commentlist li .comment-meta {
    margin-left: 150px;
}
.vcard {
    margin-left: 30px;
    margin-right: 20px;
    float: left;
}
.vcard img.avatar {
    border-radius: 10px;
    border: 5px solid #FFC706;
}
cite.fn {
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
}
.comment-content {
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    padding: 10px 30px 10px 135px;
}
ol.commentlist li p {
    margin: 10px 5px;
    padding: 10px 10px;
}
ol.commentlist li .reply {
    float: right;
    background: #6A6A6A;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}
ol.commentlist li .reply a {
    color: #fff;
}
ol.commentlist li ul.children {
    list-style: none;
    text-indent: 0;
    margin: 0px 0 0 0px 50px;
}
.comment-nav {
    height: 20px;
    padding: 5px;
}
.comment-nav a:link,.comment-nav a:visited {
    color: #777;
}
#respond {
    margin: 50px 0;
}
#respond h3 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    padding: 5px 0px;
    margin: 0px 0px;
}
#commentform {
    padding: 0px 0px;
}
#commentform p {
    color: #777;
    margin: 5px 0;
}
.form-allowed-tags {
    font-size: 13px;
}
#respond label {
    display: inline;
    color: #777;
    padding: 5px 0;
}
#respond input {
    background: #fff;
    border: 1px solid #ddd;
    color: #777;
    margin: 0 10px 10px 0;
    padding: 5px;
}
#commentform input {
    width: 50%;
    display: block;
    margin-top: 5px;
}
#respond input#submit {
    width: 130px;
    background: #eee;
    color: #555;
    cursor: pointer;
    margin: 10px 0;
    padding: 5px 10px;
    border: 1px solid #bbb;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
textarea#comment {
    display: block;
    margin-top: 5px;
    background: #fff;
    border: 1px solid #ddd;
    width: 70%;
    color: #333;
    margin: 5px 0 0;
    padding: 10px 10px;
}
.form-allowed-tags {
    padding: 20px 0px;
}
ol.commentlist li .comment-author,ol.commentlist li .comment-author .fn {
    color: #333;
}
ol.commentlist li .comment-meta,#respond label small {
    font-size: 10px;
}
ol.commentlist li ul.children li.depth-2,ol.commentlist li ul.children li.depth-3,ol.commentlist li ul.children li.depth-4,ol.commentlist li ul.children li.depth-5 {
    margin: 0 0 0 50px;
}
/* Footer */
.site-footer {
    background: #3A3A3A;
}
.site-info {
    padding: 30px 0px;
}
.fcred {
    text-align: center;
    color: #888;
}
.fcred a:link, .fcred a:visited {
    color: #888;
}
/*----------------------------------------------------
          {--------}  Pagination  {--------}
----------------------------------------------------*/
.pagination {
    clear: both;
    padding: 40px 0;
    position: relative;
    font-size: 13px;
    line-height: 24px;
    text-align: center;
}
.pagination span, .pagination a:link,.pagination a:visited {
    display: inline-block;
    margin: 2px 10px 2px 0;
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    width: auto;
    color: #fff;
    background: #FFC706;
}
.pagination a:hover {
    color: #fff;
    background: #EE3B0A;
}
.pagination .current {
    padding: 5px 14px;
    border-radius: 20px;
    background: #EE3B0A;
    color: #fff;
}

/* =Global
----------------------------------------------- */

body,
button,
input,
select,
textarea {
color: #666666;
font-family: 'PT Sans',sans-serif;
font-size: 14px;
font-size: 1.4rem;
line-height: 1.4;
}



/* Headings */
h1,h2,h3,h4,h5,h6 {
clear: both;
margin:0px 0px 10px 0px;
font-family: 'Economica',sans-serif;
line-height: 125%;
}


h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
h1 { font-size: 24px; }
h2 { font-size: 22px;  }
h3 { font-size: 18px;  }
h4 { font-size: 16px; }
h5 { font-size: 14px;  }
h6 { font-size: 14px;  }


hr {
background-color: #ccc;
border: 0;
height: 1px;
margin-bottom: 1.5em;
}

/* Text elements */
p {
margin-bottom: 1.5em;
}
ul, ol {
margin: 0 0 1.5em 3em;
}
ul {
list-style: disc;
}
ol {
list-style: decimal;
}
ul ul, ol ol, ul ol, ol ul {
margin-bottom: 0;
margin-left: 1.5em;
}
dt {
font-weight: bold;
}
dd {
margin: 0 1.5em 1.5em;
}
b, strong {
font-weight: bold;
}
dfn, cite, em, i {
font-style: italic;
}
blockquote {
margin: 0 1.5em;
}
address {
margin: 0 0 1.5em;
}
pre {
background: #eee;
font-family: "Courier 10 Pitch", Courier, monospace;
font-size: 15px;
font-size: 1.5rem;
line-height: 1.6;
margin-bottom: 1.6em;
padding: 1.6em;
overflow: auto;
max-width: 100%;
}
code, kbd, tt, var {
font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
border-bottom: 1px dotted #666;
cursor: help;
}
mark, ins {
background: #fff9c0;
text-decoration: none;
}
sup,
sub {
font-size: 75%;
height: 0;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
bottom: 1ex;
}
sub {
top: .5ex;
}
small {
font-size: 75%;
}
big {
font-size: 125%;
}
figure {
margin: 0;
}
table {
margin: 0 0 1.5em;
width: 100%;
}
th {
font-weight: bold;
}
button,
input,
select,
textarea {
font-size: 100%; /* Corrects font size not being inherited in all browsers */
margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
vertical-align: baseline; /* Improves appearance and consistency in all browsers */
*vertical-align: middle; /* Improves appearance and consistency in all browsers */
}
button,
input {
line-height: normal; /* Addresses FF3/4 setting line-height using !important in the UA stylesheet */
*overflow: visible;  /* Corrects inner spacing displayed oddly in IE6/7 */
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
border: 1px solid #ccc;
border-color: #ccc #ccc #bbb #ccc;
border-radius: 3px;
background: #fafafa; /* Old browsers */
background: -moz-linear-gradient(top,  #fafafa 60%, #e6e6e6 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(60%,#fafafa), color-stop(100%,#e6e6e6)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* IE10+ */
background: linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#e6e6e6',GradientType=0 ); /* IE6-9 */
box-shadow: inset 0 2px 1px #fff;
color: rgba(0,0,0,.8);
cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
font-size: 12px;
font-size: 1.2rem;
padding: 8px 20px;;
text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
background: #f5f5f5; /* Old browsers */
background: -moz-linear-gradient(top,  #f5f5f5 60%, #dcdcdc 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(60%,#f5f5f5), color-stop(100%,#dcdcdc)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* IE10+ */
background: linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#dcdcdc',GradientType=0 ); /* IE6-9 */
border-color: #bbb #bbb #aaa #bbb;
}
button:focus,
html input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
html input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
border-color: #aaa #bbb #bbb #bbb;
box-shadow: inset 0 2px 3px rgba(0,0,0,.15);
box-shadow: inset 0 2px 2px rgba(0,0,0,.15);
}
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box; /* Addresses box sizing set to content-box in IE8/9 */
padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
border: 0;
padding: 0;
}
input[type=text],
input[type=email],
textarea {
color: #666;
border: 1px solid #ccc;
border-radius: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
color: #111;
}
input[type=text],
input[type=email] {
padding: 7px 10px;
}
textarea {
overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
padding: 8px 10px;
vertical-align: top; /* Improves readability and alignment in all browsers */
width: 98%;
}

/* Links */
a {
color: #EE3B0A;
text-decoration: none;
}
a:visited {
color: #EE3B0A;
}
a:hover,
a:focus,
a:active {
color:#E8B409;
}

/* Alignment */
.alignleft {
display: inline;
float: left;
margin-right: 1.5em;
}
.alignright {
display: inline;
float: right;
margin-left: 1.5em;
}
.aligncenter {
clear: both;
display: block;
margin: 0 auto;
}

.clear{
clear:both;
}
/* Text meant only for screen readers */
.assistive-text {
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}


/* =Content
----------------------------------------------- */

.sticky {}
.hentry {
margin-top:70px;
}
.entry-meta {
clear: both;
}
.byline {
display: none;
}
.single .byline,
.group-blog .byline {
display: inline;
}
.entry-content,
.entry-summary {
margin: 1.5em 0 0;
line-height: 150%;
}
.page-links {
clear: both;
margin: 0 0 1.5em;
}


/* =Asides
----------------------------------------------- */

.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
display: none;
}


/* =Media
----------------------------------------------- */

.site-header img,
.entry-content img,
.comment-content img,
.widget img {
max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
.site-header img,
.entry-content img,
img[class*="align"],
img[class*="wp-image-"] {
height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
.site-header img,
.entry-content img,
img.size-full {
max-width: 100%;
width: auto; /* Prevent stretching of full-size images with height and width attributes in IE8 */
}
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
border: none;
margin-bottom: 0;
margin-top: 0;
padding: 0;
}
.wp-caption {
border: 1px solid #ccc;
max-width: 100%;
}
.wp-caption.aligncenter,
.wp-caption.alignleft,
.wp-caption.alignright {
margin-bottom: 1.5em;
}
.wp-caption img {
display: block;
margin: 1.2% auto 0;
max-width: 98%;
}
.wp-caption-text {
text-align: center;
}
.wp-caption .wp-caption-text {
margin: 0.8075em 0;
}
.site-content .gallery {
margin-bottom: 1.5em;
}
.gallery-caption {
}
.site-content .gallery a img {
border: none;
height: auto;
max-width: 90%;
}
.site-content .gallery dd {
margin: 0;
}
.site-content .gallery-columns-4 .gallery-item {
}
.site-content .gallery-columns-4 .gallery-item img {
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
max-width: 100%;
}


/* =Navigation
----------------------------------------------- */

.site-content .site-navigation {
margin: 0 0 1.5em;
overflow: hidden;
}
.site-content .nav-previous {
float: left;
width: 50%;
}
.site-content .nav-next {
float: right;
text-align: right;
width: 50%;
}
]]></b:skin>
<script type='text/javascript'>
function lebel_logo(etiqueta) {
imagenes = new Array();
imagenes[1] = &quot;<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhWv6LCjcLvYhbgnXw38IVoPVEAIIALhWOPteTIdQ5jUlnq_4WXs6qdU7b1CQ9ELkG1svMlv_ZmFSQnfzCNseMEpMezmtaEJrrijYJJdZ1xnkUeadoNXRD4dddLW-H008qmF8QXH_12bbZT/s1600/images.png' title='Image'/>&quot;

imagenes[2] = &quot;<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhR0Wrw7b7GF0-0Z4kOFGzxPMIWnNpru-fxbnkHN3HpLV1iu4-r-waqwJzDmYJp56inel7PcSN_SIMK-ZbsI9h-NqIgMAF0qNA7o6tp1t7tmRTyQkQQlSylirzwCxsWj9xBlpR7kbpKcfDx/s1600/video.png' title='Video'/>&quot;

imagenes[3] = &quot;<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgHvqxBwRnSll-HicvQ8sHfHH-_Jz7mq0S36Pb_ZLJxmliz72N7yB8ufMekxA49kl0uaJ7Z4hG-YJPP7Wz_vxaRKUrLtPnmqUKhBn1fbp2SwXyISZKY5_V8SCLoRKg_iLF9LCv2rq8rjnZj/s1600/audio.png' title='Music'/>&quot;

imagenes[4] = &quot;<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi6w9PmY6Lj4MOQPZVGh13rCsNlVFnIfatLDhqXP8EGTS3ee0dNZREqtZpCyiEcVMgGWIBkiRDMTg2VIBrG38yxcCS7W3KyIgjVgqLsyDEtqxf6CmKtqAOdXxTK42B5K6euYhRLLDZR-23C/s1600/quote.png' title='Quote'/>&quot;

imagenes[5] = &quot;<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgU3twNmBDivyDR2k06Fe-7VoMSeQ3Y3CywXqIv9ghaMDrRCwh4dCEcuJThypklNO9RZZhZntgAg0vdmuth-ZAHvomSHOn2sLXPV0anjpZfZG3zjo4DTLSzlGAtAPfflYu_aAD2eGzZp8cs/s320/link.png' title='Blog'/>&quot;

imagenes[6] = &quot;<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqKvIdJqLWCqgt_gMsBvZ8pHv4N6h9RAl8wyGdQ99PYke34jaBKnJnfFd8Zo9vq1r3vucO9GVRydgbdFR37L7BEePO4CCv2PVUniVZ0RAldlcOSnPVcN-uj-auPJIyusY51l0uUMD8_ktI/s1600/Chat.png' title='Chat'/>&quot;

if (etiqueta == &quot;Image&quot;)
{document.write(imagenes[1]);}

if (etiqueta == &quot;Video&quot;)
{document.write(imagenes[2]);}

if (etiqueta == &quot;Music&quot;)
{document.write(imagenes[3]);}

if (etiqueta == &quot;Quote&quot;)
{document.write(imagenes[4]);}

if (etiqueta == &quot;Blog&quot;)
{document.write(imagenes[5]);}

if (etiqueta == &quot;Chat&quot;)
{document.write(imagenes[6]);}

}
</script>


<script type='text/javascript'>
//<![CDATA[
/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */
(function($){$.fn.superfish=function(op){var sf=$.fn.superfish,c=sf.c,$arrow=$(['<span class="',c.arrowClass,'"> &#xbb;</span>'].join("")),over=function(){var $$=$(this),menu=getMenu($$);clearTimeout(menu.sfTimer);$$.showSuperfishUl().siblings().hideSuperfishUl();},out=function(){var $$=$(this),menu=getMenu($$),o=sf.op;clearTimeout(menu.sfTimer);menu.sfTimer=setTimeout(function(){o.retainPath=($.inArray($$[0],o.$path)>-1);$$.hideSuperfishUl();if(o.$path.length&&$$.parents(["li.",o.hoverClass].join("")).length<1){over.call(o.$path);}},o.delay);},getMenu=function($menu){var menu=$menu.parents(["ul.",c.menuClass,":first"].join(""))[0];sf.op=sf.o[menu.serial];return menu;},addArrow=function($a){$a.addClass(c.anchorClass).append($arrow.clone());};return this.each(function(){var s=this.serial=sf.o.length;var o=$.extend({},sf.defaults,op);o.$path=$("li."+o.pathClass,this).slice(0,o.pathLevels).each(function(){$(this).addClass([o.hoverClass,c.bcClass].join(" ")).filter("li:has(ul)").removeClass(o.pathClass);});sf.o[s]=sf.op=o;$("li:has(ul)",this)[($.fn.hoverIntent&&!o.disableHI)?"hoverIntent":"hover"](over,out).each(function(){if(o.autoArrows){addArrow($(">a:first-child",this));}}).not("."+c.bcClass).hideSuperfishUl();var $a=$("a",this);$a.each(function(i){var $li=$a.eq(i).parents("li");$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});});o.onInit.call(this);}).each(function(){var menuClasses=[c.menuClass];if(sf.op.dropShadows&&!($.browser.msie&&$.browser.version<7)){menuClasses.push(c.shadowClass);}$(this).addClass(menuClasses.join(" "));});};var sf=$.fn.superfish;sf.o=[];sf.op={};sf.IE7fix=function(){var o=sf.op;if($.browser.msie&&$.browser.version>6&&o.dropShadows&&o.animation.opacity!=undefined){this.toggleClass(sf.c.shadowClass+"-off");}};sf.c={bcClass:"sf-breadcrumb",menuClass:"sf-js-enabled",anchorClass:"sf-with-ul",arrowClass:"sf-sub-indicator",shadowClass:"sf-shadow"};sf.defaults={hoverClass:"sfHover",pathClass:"overideThisToUse",pathLevels:1,delay:800,animation:{opacity:"show"},speed:"normal",autoArrows:true,dropShadows:true,disableHI:false,onInit:function(){},onBeforeShow:function(){},onShow:function(){},onHide:function(){}};$.fn.extend({hideSuperfishUl:function(){var o=sf.op,not=(o.retainPath===true)?o.$path:"";o.retainPath=false;var $ul=$(["li.",o.hoverClass].join(""),this).add(this).not(not).removeClass(o.hoverClass).find(">ul").hide().css("visibility","hidden");o.onHide.call($ul);return this;},showSuperfishUl:function(){var o=sf.op,sh=sf.c.shadowClass+"-off",$ul=this.addClass(o.hoverClass).find(">ul:hidden").css("visibility","visible");sf.IE7fix.call($ul);o.onBeforeShow.call($ul);$ul.animate(o.animation,o.speed,function(){sf.IE7fix.call($ul);o.onShow.call($ul);});return this;}});})(jQuery);
//]]>
</script>
<script type='text/JavaScript'>
//courtesy of Boogiejack.com
function killcopy(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function (&quot;return false&quot;)
if (window.sidebar){
document.onmousedown=killcopy
document.onclick=reEnable
}
</script>
<script src='http://demo.fabthemes.com/winter/wp-content/themes/Winter/js/jwplayer.js?ver=1' type='text/javascript'/>

</head>
<body>
<div class='hfeed site' id='page'>  <!-- page begin -->
<header class='site-header' id='masthead' role='banner'>
<div id='botmenu'>
<div class='container_6'>
<div class='menu-primary-container' id='submenu'>
<b:section class='menu' id='menu-primary' preferred='yes' showaddelement='no'>
  <b:widget id='LinkList10' locked='true' title='' type='LinkList'>
    <b:includable id='main'>

<b:if cond='data:title'><h2><data:title/></h2></b:if>
<div class='widget-content'>
   <ul class='sfmenu'>
     <b:loop values='data:links' var='link'>
       <li><a expr:href='data:link.target'><data:link.name/></a></li>
     </b:loop>
   </ul>
   <b:include name='quickedit'/>
 </div>
</b:includable>
  </b:widget>
</b:section>
</div>
</div>
</div>

<div class='top cf '>
<div class='head container_6 cf'>
<div class='logo grid_3'>
<h1 class='site-title'>
<a expr:href='data:blog.homepageUrl'><data:blog.title/></a>
</h1>
</div>

<div class='topbar grid_3'>
<form action='/search' id='searchform' method='get'>
<input id='s' name='q' onblur='if (this.value == &quot;&quot;) {this.value = &quot;Search my site...&quot;;}' onfocus='if (this.value == &quot;Search my site...&quot;) {this.value = &quot;&quot;}' type='text' value='Search my site...'/>
<input id='searchsubmit' type='submit' value='search'/>
</form>
</div>
</div>
</div>
</header><!-- #masthead .site-header -->




<div class='site-main container_6' id='main'>
<div class='content-area ' id='primary'>
<div class='site-content cf' id='content' role='main'>
<b:section class='main' id='main' showaddelement='yes'>
  <b:widget id='HTML1' locked='false' title='' type='HTML'>
    <b:includable id='main'>
  <!-- only display title if it's non-empty -->
  <b:if cond='data:title != &quot;&quot;'>
    <h2 class='title'><data:title/></h2>
  </b:if>
  <div class='widget-content'>
    <data:content/>
  </div>

  <b:include name='quickedit'/>
</b:includable>
  </b:widget>
  <b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'>
    <b:includable id='main' var='top'>
<!-- posts -->
<div class='blog-posts hfeed'>

<data:defaultAdStart/>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.isDateStart'>
<b:if cond='data:post.isFirstPost == &quot;false&quot;'>
&lt;/div&gt;&lt;/div&gt;
</b:if>
</b:if>
<b:if cond='data:post.isDateStart'>
&lt;div class=&quot;date-outer&quot;&gt;
</b:if>
<b:if cond='data:post.isDateStart'>
&lt;div class=&quot;date-posts&quot;&gt;
</b:if>
<div class='post-outer'>
<b:include data='post' name='post'/>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
<b:include data='post' name='comments'/>
</b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<b:include data='post' name='comments'/>
</b:if>
</div>
<b:if cond='data:post.includeAd'>
<b:if cond='data:post.isFirstPost'>
<data:defaultAdEnd/>
<b:else/>
<data:adEnd/>
</b:if>
<div class='inline-ad'>
<data:adCode/>
</div>
<data:adStart/>
</b:if>
<b:if cond='data:post.trackLatency'>
<data:post.latencyJs/>
</b:if>
</b:loop>
<b:if cond='data:numPosts != 0'>
&lt;/div&gt;&lt;/div&gt;
</b:if>
<data:adEnd/>
</div>
<div class='clear'/>
<div class='pagination cf'>
<!-- navigation -->
<b:include name='nextprev'/>
</div>
 
<b:if cond='data:top.showStars'>
<script src='//www.google.com/jsapi' type='text/javascript'/>
<script type='text/javascript'>
google.load(&quot;annotations&quot;, &quot;1&quot;, {&quot;locale&quot;: &quot;<data:top.languageCode/>&quot;});
function initialize() {
google.annotations.setApplicationId(<data:top.blogspotReviews/>);
google.annotations.createAll();
google.annotations.fetch();
}
google.setOnLoadCallback(initialize);
</script>
</b:if>
</b:includable>
    <b:includable id='backlinkDeleteIcon' var='backlink'>
<span expr:class='&quot;item-control &quot; + data:backlink.adminClass'>
<a expr:href='data:backlink.deleteUrl' expr:title='data:top.deleteBacklinkMsg'>
<img src='//www.blogger.com/img/icon_delete13.gif'/>
</a>
</span>
</b:includable>
    <b:includable id='backlinks' var='post'>
<a name='links'/><h4><data:post.backlinksLabel/></h4>
<b:if cond='data:post.numBacklinks != 0'>
<dl class='comments-block' id='comments-block'>
<b:loop values='data:post.backlinks' var='backlink'>
<div class='collapsed-backlink backlink-control'>
<dt class='comment-title'>
<span class='backlink-toggle-zippy'>&#160;</span>
<a expr:href='data:backlink.url' rel='nofollow'><data:backlink.title/></a>
<b:include data='backlink' name='backlinkDeleteIcon'/>
</dt>
<dd class='comment-body collapseable'>
<data:backlink.snippet/>
</dd>
<dd class='comment-footer collapseable'>
<span class='comment-author'><data:post.authorLabel/> <data:backlink.author/></span>
<span class='comment-timestamp'><data:post.timestampLabel/> <data:backlink.timestamp/></span>
</dd>
</div>
</b:loop>
</dl>
</b:if>
<p class='comment-footer'>
<a class='comment-link' expr:href='data:post.createLinkUrl' expr:id='data:widget.instanceId + &quot;_backlinks-create-link&quot;' target='_blank'><data:post.createLinkLabel/></a>
</p>
</b:includable>
    <b:includable id='comment-form' var='post'>
<div id='comment-form'>
<div id='respond'>
<a name='comment-form'/>
<h3>Leave a Reply</h3>
<p><data:blogCommentMessage/></p>
<data:blogTeamBlogMessage/>
<a expr:href='data:post.commentFormIframeSrc' id='comment-editor-src'/>
<iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410' id='comment-editor' name='comment-editor' src='' width='102%'/>
<data:post.friendConnectJs/>
<data:post.cmtfpIframe/>
<script type='text/javascript'>
BLOG_CMT_createIframe(&#39;<data:post.appRpcRelayPath/>&#39;, &#39;<data:post.communityId/>&#39;);
</script>
</div>
</div>
</b:includable>
    <b:includable id='comment-form-js' var='post'>
<data:post.friendConnectJs/>
<data:post.cmtfpIframe/>
<script type='text/javascript'>
BLOG_CMT_createIframe(&#39;<data:post.appRpcRelayPath/>&#39;, &#39;<data:post.communityId/>&#39;);
</script>
</b:includable>
    <b:includable id='commentDeleteIcon' var='comment'>
<span expr:class='&quot;item-control &quot; + data:comment.adminClass'>
<a expr:href='data:comment.deleteUrl' expr:title='data:top.deleteCommentMsg'>
<img src='//www.blogger.com/img/icon_delete13.gif'/>
</a>
</span>
</b:includable>
    <b:includable id='comment_count_picker' var='post'>
  <b:if cond='data:post.commentSource == 1'>
    <span class='cmt_count_iframe_holder' expr:data-count='data:post.numComments' expr:data-onclick='data:post.addCommentOnclick' expr:data-post-url='data:post.url' expr:data-url='data:post.canonicalUrl'>
    </span>
  <b:else/>
    <a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>
      <data:post.commentLabelFull/>:
    </a>
  </b:if>
</b:includable>
    <b:includable id='comment_picker' var='post'>
  <b:if cond='data:post.commentSource == 1'>
    <b:include data='post' name='iframe_comments'/>
  <b:elseif cond='data:post.showThreadedComments'/>
    <b:include data='post' name='threaded_comments'/>
  <b:else/>
    <b:include data='post' name='comments'/>
  </b:if>
</b:includable>
    <b:includable id='comments' var='post'>
<div class='clear'/>
<div id='commentsbox'>
<a name='comments'/>
<b:if cond='data:post.allowComments'>
<b:if cond='data:post.numComments != 0'>
<h3 id='comments'>
<b:if cond='data:post.numComments == 1'>
One Response so far.
<b:else/>
<data:post.numComments/> Responses so far.
</b:if>
</h3>
</b:if>

<b:if cond='data:post.commentPagingRequired'>
<span class='paging-control-container'>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'><data:post.oldestLinkText/></a>
&#160;
<a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'><data:post.olderLinkText/></a>
&#160;
<data:post.commentRangeText/>
&#160;
<a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'><data:post.newerLinkText/></a>
&#160;
<a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'><data:post.newestLinkText/></a>
</span>
</b:if>


<ol class='commentlist'>
<b:loop values='data:post.comments' var='comment'>
<b:if cond='data:comment.adminClass == data:post.adminClass'>
<li class='comment odd'>
<div class='comment-body'>

<div class='authordata'>
<div class='avatar'>
<b:if cond='data:comment.favicon'>
<img expr:src='data:comment.favicon' height='32px' style='margin-bottom:-2px;' width='32px'/>
</b:if>
<a expr:name='data:comment.anchorName'/>
<b:if cond='data:blog.enabledCommentProfileImages'>
<data:comment.authorAvatarImage/>
</b:if>
</div> <!-- end .avatar-->
</div>



<div class='vcard'>
<cite class='fn'>
<b:if cond='data:comment.authorUrl'>
<a expr:href='data:comment.authorUrl' rel='nofollow'><data:comment.author/></a>
<b:else/>
<data:comment.author/>
</b:if>
</cite> <span class='says'>says:</span>
</div>
<div class='comment-meta commentmetadata'>
<a expr:href='data:comment.url' title='comment permalink'>
<data:comment.timestamp/>
</a>
<b:include data='comment' name='commentDeleteIcon'/>
</div>
<b:if cond='data:comment.isDeleted'>
<span class='deleted-comment'><data:comment.body/></span>
<b:else/>
<p>
<data:comment.body/>
<span class='interaction-iframe-guide'/>
</p>
</b:if>
</div>
</li>
<b:else/>
<li class='comment even'>
<div class='comment-body'>
<div class='comment-author vcard'>
<b:if cond='data:comment.favicon'>
<img expr:src='data:comment.favicon' height='32px' style='margin-bottom:-2px;' width='32px'/>
</b:if>
<a expr:name='data:comment.anchorName'/>
<b:if cond='data:blog.enabledCommentProfileImages'>
<data:comment.authorAvatarImage/>
</b:if>
<cite class='fn'>
<b:if cond='data:comment.authorUrl'>
<a expr:href='data:comment.authorUrl' rel='nofollow'><data:comment.author/></a>
<b:else/>
<data:comment.author/>
</b:if>
</cite> <span class='says'>says:</span>
</div>
<div class='comment-meta commentmetadata'>
<a expr:href='data:comment.url' title='comment permalink'>
<data:comment.timestamp/>
</a>
<b:include data='comment' name='commentDeleteIcon'/>
</div>
<b:if cond='data:comment.isDeleted'>
<span class='deleted-comment'><data:comment.body/></span>
<b:else/>
<p>
<data:comment.body/>
<span class='interaction-iframe-guide'/>
</p>
</b:if>
</div>
</li>
</b:if>
</b:loop>
</ol>

<b:if cond='data:post.commentPagingRequired'>
<span class='paging-control-container'>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'>
<data:post.oldestLinkText/>
</a>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'>
<data:post.olderLinkText/>
</a>
&#160;
<data:post.commentRangeText/>
&#160;
<a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'>
<data:post.newerLinkText/>
</a>
<a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'>
<data:post.newestLinkText/>
</a>
</span>
</b:if>

<p class='comment-footer'>
<b:if cond='data:post.embedCommentForm'>
<b:if cond='data:post.allowNewComments'>
<b:include data='post' name='comment-form'/>
<b:else/>
<data:post.noNewCommentsText/>
</b:if>
<b:else/>
<b:if cond='data:post.allowComments'>
<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>
</b:if>
</b:if>
</p>
</b:if>

<div id='backlinks-container'>
<div expr:id='data:widget.instanceId + &quot;_backlinks-container&quot;'>
<b:if cond='data:post.showBacklinks'>
<b:include data='post' name='backlinks'/>
</b:if>
</div>
</div>
</div>
</b:includable>
    <b:includable id='feedLinks'>
<b:if cond='data:blog.pageType != &quot;item&quot;'> <!-- Blog feed links -->
<b:if cond='data:feedLinks'>
<div class='blog-feeds'>
<b:include data='feedLinks' name='feedLinksBody'/>
</div>
</b:if>

<b:else/> <!--Post feed links -->
<div class='post-feeds'>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.allowComments'>
<b:if cond='data:post.feedLinks'>
<b:include data='post.feedLinks' name='feedLinksBody'/>
</b:if>
</b:if>
</b:loop>
</div>
</b:if>
</b:includable>
    <b:includable id='feedLinksBody' var='links'>
<div class='feed-links'>
<data:feedLinksMsg/>
<b:loop values='data:links' var='f'>
<a class='feed-link' expr:href='data:f.url' expr:type='data:f.mimeType' target='_blank'><data:f.name/> (<data:f.feedType/>)</a>
</b:loop>
</div>
</b:includable>
    <b:includable id='iframe_comments' var='post'>

  <b:if cond='data:post.allowIframeComments'>
    <script expr:src='data:post.iframeCommentSrc' type='text/javascript'/>
    <div class='cmt_iframe_holder' expr:data-href='data:post.canonicalUrl' expr:data-viewtype='data:post.viewType'/>

    <b:if cond='data:post.embedCommentForm == &quot;false&quot;'>
      <a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>
    </b:if>
  </b:if>
</b:includable>
    <b:includable id='mobile-index-post' var='post'>
<b:if cond='data:post.dateHeader'>
<div class='mobile-index-date'>
<div class='date-header'>
<span><data:post.dateHeader/></span>
</div>
</div>
</b:if>

<div class='mobile-post-outer'>
<div class='mobile-index-title-outer'>
<h3 class='mobile-index-title entry-title'>
<a href='javascript:void(0)'><data:post.title/></a>
</h3>
</div>
<div>
     
<div class='mobile-index-arrow'>
<a href='javascript:void(0)'>&amp;rsaquo;</a>
</div>

<div class='mobile-post-contents'>
<b:if cond='data:post.thumbnailUrl'>
<div class='mobile-index-thumbnail'>
<div class='Image'>
<img expr:src='data:post.thumbnailUrl'/>
</div>
</div>
</b:if>

<div class='post-body'>
<b:if cond='data:post.snippet'><data:post.snippet/></b:if>
</div>
</div>
<div style='clear: both;'/>
</div>

<div class='mobile-index-comment'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<b:if cond='data:post.allowComments'>
<b:if cond='data:post.numComments != 0'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1 <data:top.commentLabel/><b:else/><data:post.numComments/> <data:top.commentLabelPlural/></b:if></a>
</b:if>
</b:if>
</b:if>
</b:if>
</div>
</div>
</b:includable>
    <b:includable id='mobile-main' var='top'>
<!-- posts -->
<div class='blog-posts hfeed'>
<b:include data='top' name='status-message'/>
<b:if cond='data:blog.pageType == &quot;index&quot;'>
<b:loop values='data:posts' var='post'>
<b:include data='post' name='mobile-index-post'/>
</b:loop>
<b:else/>
<b:loop values='data:posts' var='post'>
<b:include data='post' name='mobile-post'/>
</b:loop>
</b:if>
</div>

<b:include name='mobile-nextprev'/>
</b:includable>
    <b:includable id='mobile-nextprev'>
<div class='blog-pager' id='blog-pager'>
<b:if cond='data:newerPageUrl'>
<div class='mobile-link-button' id='blog-pager-newer-link'>
<a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-newer-link&quot;' expr:title='data:newerPageTitle'><data:newerPageTitle/></a>
</div>
</b:if>

<b:if cond='data:olderPageUrl'>
<div class='mobile-link-button' id='blog-pager-older-link'>
<a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-older-link&quot;' expr:title='data:olderPageTitle'><data:olderPageTitle/></a>
</div>
</b:if>

<div class='mobile-link-button' id='blog-pager-home-link'>
<a class='home-link' expr:href='data:blog.homepageUrl'><data:homeMsg/></a>
</div>

<div class='mobile-desktop-link'>
<a class='home-link' expr:href='data:desktopLinkUrl'><data:desktopLinkMsg/></a>
</div>
</div>
<div class='clear'/>
</b:includable>
    <b:includable id='mobile-post' var='post'>
  <div class='date-outer'>
    <b:if cond='data:post.dateHeader'>
      <h2 class='date-header'><span><data:post.dateHeader/></span></h2>
    </b:if>
    <div class='date-posts'>
      <div class='post-outer'>

        <div class='post hentry uncustomized-post-template'>
          <a expr:name='data:post.id'/>
          <b:if cond='data:post.title'>
            <h3 class='post-title entry-title'>
              <b:if cond='data:post.link'>
                <a expr:href='data:post.link'><data:post.title/></a>
              <b:else/>
                <b:if cond='data:post.url'>
                  <b:if cond='data:blog.url != data:post.url'>
                    <a expr:href='data:post.url'><data:post.title/></a>
                  <b:else/>
                    <data:post.title/>
                  </b:if>
                <b:else/>
                  <data:post.title/>
                </b:if>
              </b:if>
            </h3>
          </b:if>

          <div class='post-header'>
            <div class='post-header-line-1'/>
          </div>

          <div class='post-body entry-content' expr:id='&quot;post-body-&quot; + data:post.id'>
            <data:post.body/>
            <div style='clear: both;'/> <!-- clear for photos floats -->
          </div>

          <div class='post-footer'>
            <div class='post-footer-line post-footer-line-1'>
              <span class='post-author vcard'>
                <b:if cond='data:top.showAuthor'>
                  <data:top.authorLabel/>
                  <span class='fn'><data:post.author/></span>
                </b:if>
              </span>

              <span class='post-timestamp'>
                <b:if cond='data:top.showTimestamp'>
                  <data:top.timestampLabel/>
                  <b:if cond='data:post.url'>
                    <a class='timestamp-link' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='published' expr:title='data:post.timestampISO8601'><data:post.timestamp/></abbr></a>
                  </b:if>
                </b:if>
              </span>

              <span class='post-comment-link'>
                <b:if cond='data:blog.pageType != &quot;item&quot;'>
                  <b:if cond='data:blog.pageType != &quot;static_page&quot;'>
                    <b:if cond='data:post.allowComments'>
                      <a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1 <data:top.commentLabel/><b:else/><data:post.numComments/> <data:top.commentLabelPlural/></b:if></a>
                    </b:if>
                  </b:if>
                </b:if>
              </span>
            </div>

            <div class='post-footer-line post-footer-line-2'>
              <b:if cond='data:top.showMobileShare'>
                <div class='mobile-link-button goog-inline-block' id='mobile-share-button'>
                  <a href='javascript:void(0);'><data:shareMsg/></a>
                </div>
              </b:if>
              <b:if cond='data:top.showDummy'>
                <div class='goog-inline-block dummy-container'><data:post.dummyTag/></div>
              </b:if>
            </div>

          </div>
        </div>

        <b:if cond='data:blog.pageType == &quot;static_page&quot;'>
          <b:include data='post' name='comments'/>
        </b:if>
        <b:if cond='data:blog.pageType == &quot;item&quot;'>
          <b:include data='post' name='comments'/>
        </b:if>
      </div>
    </div>
  </div>
</b:includable>
    <b:includable id='nextprev'>
<div class='blog-pager' id='blog-pager'>
<b:if cond='data:newerPageUrl'>
<span id='blog-pager-newer-link'>
<a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-newer-link&quot;' expr:title='data:newerPageTitle'><data:newerPageTitle/></a>
</span>
</b:if>

<b:if cond='data:olderPageUrl'>
<span id='blog-pager-older-link'>
<a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + &quot;_blog-pager-older-link&quot;' expr:title='data:olderPageTitle'><data:olderPageTitle/></a>
</span>
</b:if>
</div>
<div class='clear'/>
</b:includable>
    <b:includable id='post' var='post'>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
<article class='post page' id='post'>
<div class='page-cover'>
<header class='entry-header'>
<h2 class='entry-title'>
<b:if cond='data:post.link'>
<data:post.title/>
<b:else/>
<b:if cond='data:post.url'>
<data:post.title/>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h2>
</header><!-- .entry-header -->

<div class='entry-content'>
<data:post.body/>
</div><!-- .entry-content -->
</div>
</article><!-- #post-2 -->
</b:if>

<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<article class='post' id='post'>
<div class='format-box'>
<b:loop values='data:post.labels' var='label'>
<a class='icon-user' expr:href='data:label.url' rel='tag'>
<script type='text/javascript'>lebel_logo(&quot;<data:label.name/>&quot;);</script>
</a>
</b:loop>
</div>

<div class='post-cover'>
<div class='entry-meta'>
<span class='clock'>
<i class='icon-time'/>
<data:post.timestamp/> days ago
</span>
<span class='comments-link'>
<i class='icon-comment'/>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1 <b:else/><data:post.numComments/> </b:if></a>
</span>
<span class='perml'>
<i class='icon-bolt'/>
<a expr:href='data:post.url' rel='bookmark'>Permalink</a></span>
</div><!-- #entry-meta -->

<header class='entry-header'>
<h2 class='entry-title'>
<b:if cond='data:post.link'>
<data:post.title/>
<b:else/>
<b:if cond='data:post.url'>
<data:post.title/>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h2>
</header><!-- .entry-header -->
<div class='entry-content'>
<p><data:post.body/></p>
</div><!-- .entry-content -->
</div>
</article><!-- #post-46 -->
</b:if></b:if>




<b:if cond='data:blog.pageType == &quot;item&quot;'>
<article class='post' id='post'>
<div class='format-box'>
<b:loop values='data:post.labels' var='label'>
<a class='icon-user' expr:href='data:label.url' rel='tag'>
<script type='text/javascript'>lebel_logo(&quot;<data:label.name/>&quot;);</script>
</a>
</b:loop>
</div>

<div class='post-cover'>
<div class='entry-meta'>
<span class='clock'>
<i class='icon-time'/>
<data:post.timestamp/> days ago
</span>
<span class='comments-link'>
<i class='icon-comment'/>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1 <b:else/><data:post.numComments/> </b:if></a>
</span>
<span class='perml'>
<i class='icon-bolt'/>
<a expr:href='data:post.url' rel='bookmark'>Permalink</a></span>
</div><!-- #entry-meta -->

<header class='entry-header'>
<h2 class='entry-title'>
<b:if cond='data:post.link'>
<data:post.title/>
<b:else/>
<b:if cond='data:post.url'>
<data:post.title/>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h2>
</header><!-- .entry-header -->
<div class='entry-content'>
<p><data:post.body/></p>
</div><!-- .entry-content -->
</div>
</article><!-- #post-46 -->
</b:if>
</b:includable>
    <b:includable id='postQuickEdit' var='post'>
<b:if cond='data:post.editUrl'>
<span expr:class='&quot;item-control &quot; + data:post.adminClass'>
<a expr:href='data:post.editUrl' expr:title='data:top.editPostMsg'>
<img alt='' class='icon-action' height='18' src='http://img2.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/>
</a>
</span>
</b:if>
</b:includable>
    <b:includable id='shareButtons' var='post'>
<b:if cond='data:post.sharePostUrl'>
<a class='share-button sb-email' expr:href='data:post.sharePostUrl + &quot;&amp;target=email&quot;' expr:title='data:top.emailThisMsg' target='_blank'>
<span class='share-button-link-text'><data:top.emailThisMsg/></span></a>
<a class='share-button sb-blog' expr:href='data:post.sharePostUrl + &quot;&amp;target=blog&quot;' expr:onclick='&quot;window.open(this.href, \&quot;_blank\&quot;, \&quot;height=270,width=475\&quot;); return false;&quot;' expr:title='data:top.blogThisMsg' target='_blank'>
<span class='share-button-link-text'><data:top.blogThisMsg/></span></a>
<a class='share-button sb-twitter' expr:href='data:post.sharePostUrl + &quot;&amp;target=twitter&quot;' expr:title='data:top.shareToTwitterMsg' target='_blank'>
<span class='share-button-link-text'><data:top.shareToTwitterMsg/></span></a>
<a class='share-button sb-facebook' expr:href='data:post.sharePostUrl + &quot;&amp;target=facebook&quot;' expr:onclick='&quot;window.open(this.href, \&quot;_blank\&quot;, \&quot;height=430,width=640\&quot;); return false;&quot;' expr:title='data:top.shareToFacebookMsg' target='_blank'>
<span class='share-button-link-text'><data:top.shareToFacebookMsg/></span></a>
<a class='share-button sb-buzz' expr:href='data:post.sharePostUrl + &quot;&amp;target=buzz&quot;' expr:onclick='&quot;window.open(this.href, \&quot;_blank\&quot;, \&quot;height=415,width=690\&quot;); return false;&quot;' expr:title='data:top.shareToBuzzMsg' target='_blank'>
<span class='share-button-link-text'><data:top.shareToBuzzMsg/></span></a>
</b:if>
</b:includable>
    <b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div class='status-msg-wrap'>
<div class='status-msg-body'>
<data:navMessage/>
</div>
<div class='status-msg-border'>
<div class='status-msg-bg'>
<div class='status-msg-hidden'><data:navMessage/></div>
</div>
</div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>
    <b:includable id='threaded-comment-form' var='post'>
  <div class='comment-form'>
    <a name='comment-form'/>
    <b:if cond='data:mobile'>
      <p><data:blogCommentMessage/></p>
      <data:blogTeamBlogMessage/>
      <a expr:href='data:post.commentFormIframeSrc' id='comment-editor-src'/>
      <iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' expr:height='data:cmtIframeInitialHeight' frameborder='0' id='comment-editor' name='comment-editor' src='' style='display: none' width='100%'/>
    <b:else/>
      <p><data:blogCommentMessage/></p>
      <data:blogTeamBlogMessage/>
      <a expr:href='data:post.commentFormIframeSrc' id='comment-editor-src'/>
      <iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' expr:height='data:cmtIframeInitialHeight' frameborder='0' id='comment-editor' name='comment-editor' src='' width='100%'/>
    </b:if>
    <data:post.friendConnectJs/>
    <data:post.cmtfpIframe/>
    <script type='text/javascript'>
      BLOG_CMT_createIframe(&#39;<data:post.appRpcRelayPath/>&#39;);
    </script>
  </div>
</b:includable>
    <b:includable id='threaded_comment_js' var='post'>
  <script async='async' expr:src='data:post.commentSrc' type='text/javascript'/>

  <script type='text/javascript'>
    (function() {
      var items = <data:post.commentJso/>;
      var msgs = <data:post.commentMsgs/>;
      var config = <data:post.commentConfig/>;

// <![CDATA[
      var cursor = null;
      if (items && items.length > 0) {
        cursor = parseInt(items[items.length - 1].timestamp) + 1;
      }

      var bodyFromEntry = function(entry) {
        if (entry.gd$extendedProperty) {
          for (var k in entry.gd$extendedProperty) {
            if (entry.gd$extendedProperty[k].name == 'blogger.contentRemoved') {
              return '<span class="deleted-comment">' + entry.content.$t + '</span>';
            }
          }
        }
        return entry.content.$t;
      }

      var parse = function(data) {
        cursor = null;
        var comments = [];
        if (data && data.feed && data.feed.entry) {
          for (var i = 0, entry; entry = data.feed.entry[i]; i++) {
            var comment = {};
            // comment ID, parsed out of the original id format
            var id = /blog-(\d+).post-(\d+)/.exec(entry.id.$t);
            comment.id = id ? id[2] : null;
            comment.body = bodyFromEntry(entry);
            comment.timestamp = Date.parse(entry.published.$t) + '';
            if (entry.author && entry.author.constructor === Array) {
              var auth = entry.author[0];
              if (auth) {
                comment.author = {
                  name: (auth.name ? auth.name.$t : undefined),
                  profileUrl: (auth.uri ? auth.uri.$t : undefined),
                  avatarUrl: (auth.gd$image ? auth.gd$image.src : undefined)
                };
              }
            }
            if (entry.link) {
              if (entry.link[2]) {
                comment.link = comment.permalink = entry.link[2].href;
              }
              if (entry.link[3]) {
                var pid = /.*comments\/default\/(\d+)\?.*/.exec(entry.link[3].href);
                if (pid && pid[1]) {
                  comment.parentId = pid[1];
                }
              }
            }
            comment.deleteclass = 'item-control blog-admin';
            if (entry.gd$extendedProperty) {
              for (var k in entry.gd$extendedProperty) {
                if (entry.gd$extendedProperty[k].name == 'blogger.itemClass') {
                  comment.deleteclass += ' ' + entry.gd$extendedProperty[k].value;
                } else if (entry.gd$extendedProperty[k].name == 'blogger.displayTime') {
                  comment.displayTime = entry.gd$extendedProperty[k].value;
                }
              }
            }
            comments.push(comment);
          }
        }
        return comments;
      };

      var paginator = function(callback) {
        if (hasMore()) {
          var url = config.feed + '?alt=json&v=2&orderby=published&reverse=false&max-results=50';
          if (cursor) {
            url += '&published-min=' + new Date(cursor).toISOString();
          }
          window.bloggercomments = function(data) {
            var parsed = parse(data);
            cursor = parsed.length < 50 ? null
                : parseInt(parsed[parsed.length - 1].timestamp) + 1
            callback(parsed);
            window.bloggercomments = null;
          }
          url += '&callback=bloggercomments';
          var script = document.createElement('script');
          script.type = 'text/javascript';
          script.src = url;
          document.getElementsByTagName('head')[0].appendChild(script);
        }
      };
      var hasMore = function() {
        return !!cursor;
      };
      var getMeta = function(key, comment) {
        if ('iswriter' == key) {
          var matches = !!comment.author
              && comment.author.name == config.authorName
              && comment.author.profileUrl == config.authorUrl;
          return matches ? 'true' : '';
        } else if ('deletelink' == key) {
          return config.baseUri + '/delete-comment.g?blogID='
               + config.blogId + '&postID=' + comment.id;
        } else if ('deleteclass' == key) {
          return comment.deleteclass;
        }
        return '';
      };

      var replybox = null;
      var replyUrlParts = null;
      var replyParent = undefined;

      var onReply = function(commentId, domId) {
        if (replybox == null) {
          // lazily cache replybox, and adjust to suit this style:
          replybox = document.getElementById('comment-editor');
          if (replybox != null) {
            replybox.height = '250px';
            replybox.style.display = 'block';
            replyUrlParts = replybox.src.split('#');
          }
        }
        if (replybox && (commentId !== replyParent)) {
          replybox.src = '';
          document.getElementById(domId).insertBefore(replybox, null);
          replybox.src = replyUrlParts[0]
              + (commentId ? '&parentID=' + commentId : '')
              + '#' + replyUrlParts[1];
          replyParent = commentId;
        }
      };

      var hash = (window.location.hash || '#').substring(1);
      var startThread, targetComment;
      if (/^comment-form_/.test(hash)) {
        startThread = hash.substring('comment-form_'.length);
      } else if (/^c[0-9]+$/.test(hash)) {
        targetComment = hash.substring(1);
      }

      // Configure commenting API:
      var configJso = {
        'maxDepth': config.maxThreadDepth
      };
      var provider = {
        'id': config.postId,
        'data': items,
        'loadNext': paginator,
        'hasMore': hasMore,
        'getMeta': getMeta,
        'onReply': onReply,
        'rendered': true,
        'initComment': targetComment,
        'initReplyThread': startThread,
        'config': configJso,
        'messages': msgs
      };

      var render = function() {
        if (window.goog && window.goog.comments) {
          var holder = document.getElementById('comment-holder');
          window.goog.comments.render(holder, provider);
        }
      };

      // render now, or queue to render when library loads:
      if (window.goog && window.goog.comments) {
        render();
      } else {
        window.goog = window.goog || {};
        window.goog.comments = window.goog.comments || {};
        window.goog.comments.loadQueue = window.goog.comments.loadQueue || [];
        window.goog.comments.loadQueue.push(render);
      }
    })();
// ]]>
  </script>
</b:includable>
    <b:includable id='threaded_comments' var='post'>
  <div class='comments' id='comments'>
    <a name='comments'/>
    <h4><data:post.commentLabelFull/>:</h4>

    <div class='comments-content'>
      <b:include cond='data:post.embedCommentForm' data='post' name='threaded_comment_js'/>
      <div id='comment-holder'>
         <data:post.commentHtml/>
      </div>
    </div>

    <p class='comment-footer'>
      <b:if cond='data:post.allowNewComments'>
        <b:include data='post' name='threaded-comment-form'/>
      <b:else/>
        <data:post.noNewCommentsText/>
      </b:if>
    </p>

    <b:if cond='data:showCmtPopup'>
      <div id='comment-popup'>
        <iframe allowtransparency='true' frameborder='0' id='comment-actions' name='comment-actions' scrolling='no'>
        </iframe>
      </div>
    </b:if>

    <div id='backlinks-container'>
    <div expr:id='data:widget.instanceId + &quot;_backlinks-container&quot;'>
      <b:include cond='data:post.showBacklinks' data='post' name='backlinks'/>
    </div>
    </div>
  </div>
</b:includable>
  </b:widget>
</b:section>
</div><!-- #content .site-content -->
</div><!-- #primary .content-area -->
</div><!-- #main .site-main -->

<div id='bottom'>
<div class='container_6 cf'>
<ul>
<div class='botwid grid_2'>
<b:section class='lowerbar' id='lowerbar1' preferred='yes'/>
</div>

<div class='botwid grid_2'>
<b:section class='lowerbar' id='lowerbar2' preferred='yes'/>
</div>

<div class='botwid grid_2'>
<b:section class='lowerbar' id='lowerbar3' preferred='yes'/>
</div>
</ul>
</div>
</div>

<footer class='site-footer' id='colophon' role='contentinfo'>
<div class='container_6'>
<div class='site-info'>
<div class='fcred'>
&#169; 2013 <a expr:href='data:blog.homepageUrl'><data:blog.title/></a> Design by Khenno<a href='' title='Best Themes - WordPress Theme // Blogger Theme'/> | <a href='' title='Themes Hive - Premium WordPress Theme'>MUC7</a>  <br/>
<a href='' title='WordPress Themes Designs'/>
</div>
</div></div><!-- .site-info -->
</footer><!-- #colophon .site-footer -->
</div>
</body>
</html>

© 2013 khenno. All rights resevered. Designed by