// JavaScript Document

 $(document).ready(function(){
  var pathURL="http://www.ramhukuk.com/wp-content/themes/ram/images/";
 
//<!-- random background-->
 //  var BGimages = ['bg_1.jpg', 'bg_3.jpg', 'bg_5.jpg'];
  var BGimages = ['bg_1.jpg', 'bg_3.jpg'];
  $('.index_contentContainer').css({'background-image': 'url('+pathURL+ BGimages[Math.floor(Math.random() * BGimages.length)] + ')'});
  
//<!-- enter the site button -->  
  var images = ['ram_index_logo.png','ram_index_logo2.png',"ramhukukofisi_white2.jpg","ramhukukofisi_logo_white2.jpg","lawlink_logo.jpg","navigation_numbers_1.jpg","navigation_numbers_2.jpg","navigation_numbers_3.jpg","navigation_numbers_4.jpg","navigation_numbers_5.jpg"];

//correct the css arranged for javascript turned off
  $('.index_languageButton').hide();
  $('.indexpage_languageLinks img') .attr("src",pathURL+images[0]);

//load images
 function preload()
 {
   for(var i = 0; i<images.length; i++)
   {
   		jQuery("<img/>").attr("src",pathURL+ images[i]);
   }
 };
 
  preload();
  
//change image and display links on rollover
 $(".indexpage_languageLinks").hover(
  function () { 
  	$('.index_languageButton').show();
    $('.indexpage_languageLinks img') .attr("src",pathURL+ images[1]);
	
  },
  function () {
	$('.index_languageButton').hide();
    $('.indexpage_languageLinks img').attr("src",pathURL+ images[0]);
  }
);
 
 //mail address correction
 $('.at').text('@');
 $('.dot').text('.');
 $.each($('.mailLink'),function(){
  $(this).attr('href','mailto:'+$(this).text());
  
});
 });
