ONEMLI KODLAR

Css Kodu:
h1#title{display: none;}
h2#title span {display: none;}
div.header{display: none;}
li.nav_element{list-style-type: none;}
li.nav_element{display: none;}
<style type="text/css">
<!--
html, body {
text-align: center;
}
-->
</style>


<style type="text/css">
<!--
body{background-image:url(https://img.webme.com/pic/y/yomraliahmet/arkaplan1111.jpg);background-attachment: fixed}

</style>



















<style type="text/css">
<!--
html, body {
text-align: center;
}
-->
</style> 


















</td></tr></table></div>
 </tr>
    </tbody>
</table>
</p>















<!-- begin logostrip --><script language="JavaScript1.1">
<!--

//*****************************************
// Blending Image Slide Show Script-
// © Dynamic Drive (www.dynamicdrive.com)
// For full source code, visit http://www.dynamicdrive.com/
//*****************************************

//specify interval between slide (in mili seconds)
var slidespeed=3000;

//specify images
//var slideimages=new Array("https://img.webme.com/pic/y/yomraliahmet/cccccc1.png","https://img.webme.com/pic/y/yomraliahmet/cccccc2.png");
var slideimages=new Array();

//slideimages[0]

slideimages[0]='https://img.webme.com/pic/y/yomraliahmet/cccccc1.png';

slideimages[1]='https://img.webme.com/pic/y/yomraliahmet/cccccc2.png';

slideimages[2]='https://img.webme.com/pic/y/yomraliahmet/cccccc3.png';

slideimages[3]='https://img.webme.com/pic/y/yomraliahmet/cccccc4.png';

slideimages[4]='https://img.webme.com/pic/y/yomraliahmet/cccccc5.png';

slideimages[5]='https://img.webme.com/pic/y/yomraliahmet/cccccc6.png';

slideimages[6]='https://img.webme.com/pic/y/yomraliahmet/cccccc7.png';
//specify corresponding links
var slidelinks=new Array();

var newwindow=0 //open links in new window? 1=yes, 0=no

var imageholder=new Array();
var ie=document.all;
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}

function gotoshow(){
if (newwindow)
window.open(slidelinks[whichlink])
else
window.location=slidelinks[whichlink]
}

//-->
</script><script language="javascript1.1">

var csbustcachevar=1
var csloadstatustext="<img src='http://www.kurtunluler.com/banner/Yukleniyor.gif' /> İçerik Yükleniyor..."
var csexternalfiles=[]


var enablepersist=true
var slidernodes=new Object()
var csloadedobjects=""

function ContentSlider(sliderid, autorun, customPaginateText, customNextText){
 var slider=document.getElementById(sliderid)
 if (typeof customPaginateText!="undefined" && customPaginateText!="")
  slider.paginateText=customPaginateText
 if (typeof customNextText!="undefined" && customNextText!="")
  slider.nextText=customNextText
 slidernodes[sliderid]=[]
 ContentSlider.loadobjects(csexternalfiles)
 var alldivs=slider.getElementsByTagName("div")
 for (var i=0; i<alldivs.length; i++){
  if (alldivs[i].className=="contentdiv"){
   slidernodes[sliderid].push(alldivs[i]) //add this DIV reference to array
   if (typeof alldivs[i].getAttribute("rel")=="string")
    ContentSlider.ajaxpage(alldivs[i].getAttribute("rel"), alldivs[i])
  }
 }
 ContentSlider.buildpagination(sliderid)
 var loadfirstcontent=true
 if (enablepersist && getCookie(sliderid)!=""){ //if enablepersist is true and cookie contains corresponding value for slider
  var cookieval=getCookie(sliderid).split(":") //process cookie value ([sliderid, int_pagenumber (div content to jump to)]
  if (document.getElementById(cookieval[0])!=null && typeof slidernodes[sliderid][cookieval[1]]!="undefined"){ //check cookie value for validity
   ContentSlider.turnpage(cookieval[0], parseInt(cookieval[1])) //restore content slider's last shown DIV
   loadfirstcontent=false
  }
 }
 if (loadfirstcontent==true) //if enablepersist is false, or cookie value doesn't contain valid value for some reason (ie: user modified the structure of the HTML)
  ContentSlider.turnpage(sliderid, 0) //Display first DIV within slider
 if (typeof autorun=="number" && autorun>0) //if autorun parameter (int_miliseconds) is defined, fire auto run sequence
  window[sliderid+"timer"]=setTimeout(function(){ContentSlider.autoturnpage(sliderid, autorun)}, autorun)
}

ContentSlider.buildpagination=function(sliderid){
 var slider=document.getElementById(sliderid)
 var paginatediv=document.getElementById("paginate-"+sliderid) //reference corresponding pagination DIV for slider
 var pcontent=""
 for (var i=0; i<slidernodes[sliderid].length; i++) //For each DIV within slider, generate a pagination link
  pcontent+='| <a href="#" onClick="ContentSlider.turnpage(''+sliderid+'', '+i+'); return false">'+(slider.paginateText? slider.paginateText[i] : i+1)+'</a> |'
 pcontent+=' <a href="#" style="font-weight: bold;" onClick="ContentSlider.turnpage(''+sliderid+'', parseInt(this.getAttribute('rel'))); return false"></a>'
 paginatediv.innerHTML=pcontent
 paginatediv.onclick=function(){ //cancel auto run sequence (if defined) when user clicks on pagination DIV
 if (typeof window[sliderid+"timer"]!="undefined")
  clearTimeout(window[sliderid+"timer"])
 }
}

ContentSlider.turnpage=function(sliderid, thepage){
 var paginatelinks=document.getElementById("paginate-"+sliderid).getElementsByTagName("a") //gather pagination links
 for (var i=0; i<slidernodes[sliderid].length; i++){ //For each DIV within slider
  paginatelinks[i].className="" //empty corresponding pagination link's class name
  slidernodes[sliderid][i].style.display="none" //hide DIV
 }
 paginatelinks[thepage].className="selected" //for selected DIV, set corresponding pagination link's class name
 slidernodes[sliderid][thepage].style.display="block" //show selected DIV
 //Set "Next" pagination link's (last link within pagination DIV) "rel" attribute to the next DIV number to show
 paginatelinks[paginatelinks.length-1].setAttribute("rel", thenextpage=(thepage<paginatelinks.length-2)? thepage+1 : 0)
 if (enablepersist)
  setCookie(sliderid, sliderid+":"+thepage)
}

ContentSlider.autoturnpage=function(sliderid, autorunperiod){
 var paginatelinks=document.getElementById("paginate-"+sliderid).getElementsByTagName("a") //Get pagination links
 var nextpagenumber=parseInt(paginatelinks[paginatelinks.length-1].getAttribute("rel")) //Get page number of next DIV to show
 ContentSlider.turnpage(sliderid, nextpagenumber) //Show that DIV
 window[sliderid+"timer"]=setTimeout(function(){ContentSlider.autoturnpage(sliderid, autorunperiod)}, autorunperiod)
}

function getCookie(Name){
 var re=new RegExp(Name+"=[^;]+", "i"); //construct RE to search for target name/value pair
 if (document.cookie.match(re)) //if cookie found
  return document.cookie.match(re)[0].split("=")[1] //return its value
 return ""
}

function setCookie(name, value){
 document.cookie = name+"="+value
}
</script><style type="text/css">

 

 

 

 

 

 

 

 

 

 

 

 

 

 

<!--
table {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 12px;
}
a:link {
 text-decoration: none;
 color:#333333;
}
a:hover {
 text-decoration: underline;
 color: #FF0000;
}
.style2 { font-family:Verdana, Arial, Helvetica, sans-serif; font-size: 11px;color: #000000; }
.style8 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #FF0000;}
a:active {
 text-decoration: underline;
}
a:visited {
 color: #666666;
 text-decoration: none;
}

--></style>
<tbody>
</tbody>
<table height="200" cellspacing="0" cellpadding="0" width="800" border="0">
    <tbody>
        <tr>
            <td background="main_backround.gif" height="1"><center><img style="filter: blendTrans(duration=3); width: 979px; height: 200px" height="200" alt="" width="1093" align="top" border="0" name="slide" src="https://img.webme.com/pic/y/yomraliahmet/cccccc1.png" /></center><script language="JavaScript1.1">
<!--

var whichlink=0
var whichimage=0
var blenddelay=(ie)? document.images.slide.filters[0].duration*1000 : 0
function slideit(){
if (!document.images) return
if (ie) document.images.slide.filters[0].apply()
document.images.slide.src=imageholder[whichimage].src
if (ie) document.images.slide.filters[0].play()
whichlink=whichimage
whichimage=(whichimage<slideimages.length-1)? whichimage+1 : 0
setTimeout("slideit()",slidespeed+blenddelay)
}
slideit()

//-->
</script></td>
        </tr>
        <!-- end logostrip --><!-- begin linkbar --><!-- end linkbar --><!-- begin shoutbox --><!-- end shoutbox --><!-- begin open portal body --><!-- end close portal body --><!-- begin close main table -->
    </tbody>
</table>

 

 

 

 

 

 


<div align="center"><table border="0" width="0%"><tr><td>
<p>
<table cellspacing="0" cellpadding="0" width="981" border="0">
    <tbody>
        <tr>
            <td valign="top" bordercolor="F3C1C1" align="CENTER" bgcolor="#F3C1C1">
            <table height="0" cellspacing="0" cellpadding="0" width="" border="0">
                <tbody>


                    <tr>
                        <td valign="top" bordercolor="#F3C1C1" align="left" bgcolor="#F1EBEB">

 

 


</td>
                    </tr>
                </tbody>
            </table>

Bu web sitesi ücretsiz olarak Bedava-Sitem.com ile oluşturulmuştur. Siz de kendi web sitenizi kurmak ister misiniz?
Ücretsiz kaydol