$(document).ready(function(){        

// Colorbox 
$("#referans").colorbox({inline:true, href:"#referans-frame"});
$("#iletisim").colorbox({iframe:true, innerWidth:640, innerHeight:450});
$("#webyaptir").colorbox({inline:true, href:"#webyaptir-frame"});

//Menu effect

$(".menu img").hover(
  function () {
    var theId = $(this).attr('id');
    $('#'+theId).attr('src', 'images/menu/'+theId+'_hov.png');
    
    $('#'+theId).animate({
      marginTop: '+=3'
    }, 150, function() {
      // Animation complete. 
    });
       
  },
  function () {
    var theId = $(this).attr('id');      
    $('#'+theId).attr('src', 'images/menu/'+theId+'.png');
       $('#'+theId).animate({
          marginTop: '-=3'
        }, 300, function() {
          // Animation complete.  
          
        });             
   
  });

// Carousel
$('#carousel').carouFredSel({
  prev: '#prev',
  next: '#next',
  align: "center",
	auto : false
});


// Products hover	 
	$(".refimg").hover(
   function () {
    $(this).css('borderColor','#B0B0B0');
    $(this).find('div').animate({'height':'+=20px'}, 200);
   },function(){
    $(this).css('borderColor','#D4D4D4');
    $(this).find('div').animate({'height':'-=20px'}, 400);
	 });//hover

}); // doc ready end

