// Arama Butonu

$(function(){

   $(".n_search_text").focusin(function(){
   
      $(this).css("outline","none");
	  
	  $(this).animate({
	  
	     width : "200px"
	  
	  });
   
   });
   
   $(".n_search_text").focusout(function(){
   
      $(this).animate({
	  
	     width : "45px"
	  
	  });
   
   });

});

// Yan Menü

$(function(){

   $(".s_menu_small li a").hover(function(){
   
      $(this).stop().animate({
	  
	     paddingLeft : "5px"
	  
	  },200);
   
   }, function(){
   
      $(this).stop().animate({
	  
	     paddingLeft : "0"
	  
	  },200);
   
   });
   
   $(".s_menu_big li a").hover(function(){
   
      $(this).stop().animate({
	  
	     marginLeft : "5px"
	  
	  },200);
   
   }, function(){
   
      $(this).stop().animate({
	  
	     marginLeft : "0"
	  
	  },200);
   
   });

});

// Alt Menü

$(function(){

   $(".f_toggle a").toggle(function(){
   
      $(".f_menu").slideUp("slow");
   
   }, function(){
   
      $(".f_menu").slideDown("slow");
   
   });

});

// Üst Menü Düzeltme

$(function(){

   $(".n_menu li:first").css("border-left","0");

});

// Üst Menü Düzeltme

$(function(){

   $(".f_left li:first").css({
   
      borderLeft : "none",
	  paddingLeft : "0"
   
   });

});

// Reklam

$(function(){

   $(".s_menu_big img:even").css("marginRight","14px");

});

// Yorumlar

$(function(){

   $(".c_section:last").css({
   
      borderBottom : "1px solid #CCC",
	  marginBottom : "15px"

   });
   
   $(".c_section p:last").css("marginBottom","0");

});
