  //slider
  $(document).ready(function() {
  $('#slideshowHolder').jqFancyTransitions({width: 1000, height: 310,links: true,delay: 5000, stripDelay: 50 });
  });
  
  
  //haber scroll
  $(function(){
  $("ul#haber").liScroll();  
  }); 
  //fade
  $(function(){
  $(".r #ortalink").css({
   'opacity' : "0.8"
   })  
  });
  $(function(){
  $("#kuluplerdiv .ortalink").css({
   'opacity' : "0.6"
   })  
  });  
  //filter:none
  $(function(){
   $(".cbaslik").css({
    'filter' : ''
   })
   $(".cmetin").css({
    'filter' : ''
   })
   $("alt").css({
    'filter' : ''
   })    
  });
  //menu yeni
  $(function(){
   $('#menu ul li ul').hide();
   $('#menu ul li').hover(
    function(){
     $('#menu ul li').not($('ul', this)).stop();
     $('ul li:first-child', this).before(
      '<li class="arrow"></li>'
     );
     $('ul li.arrow', this).css('border-bottom', '0');
     $('ul', this).slideDown('fast');
    },
    function(){
     $('ul', this).slideUp('fast');
     $('ul li.arrow', this).remove();
    }
   );
  });  
  //fade2
//$(document).ready(function() {
//	$(".r a").hover(function() { //On hover...
//		var thumbOver = $(this).find("img").attr("src"); //Get image url and assign it to 'thumbOver'
//		//Set a background image(thumbOver) on the &lt;a&gt; tag 
//		$(this).find("a.thumb").css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});
//		//Fade the image to 0 
//		$(this).find("span").stop().fadeTo('normal', 0 , function() {
//			$(this).hide() //Hide the image after fade
//		}); 
//	} , function() { //on hover out...
//		//Fade the image to 1 
//		$(this).find("span").stop().fadeTo('normal', 1).show();
//	});
//
//});

