$().ready(function () {

	//anasayfa slider
	$("#slider").nivoSlider({
		effect:'boxRainGrowReverse'
	});
//anasaayfa slider

	//ürünler üzeine gelince opacity ayarı
	$('#urunler ul.usturun li a').hover(function () {
		$('span', this).stop(true, true).animate({opacity:1}, 700);
	}, function () {
		$('span', this).animate({opacity:0}, 350);
	});
	//ürünler üzerine gelince opacity ayarı

	//menü üzerindeki lavalamp efekti
	$("#menu").lavaLamp({
		fx:"easeOutBack",
		speed:700,
		click:function (event, menuItem) {
			return true;
		}
	});
	//lavalamp efekti

	//logonun linki
	$('#logo').click(function () {
		window.location.href = 'http://' + document.domain;
	});

	//tasarım yapan
	$('#design a').hover(function () {
		$(this).animate({color:'#333333', textDecoration:'underline'}, 500);
	}, function () {
		$(this).animate({color:'#7c7c7c'}, 300)
	});


	$(function () {
		$('.ticker').jCarouselLite(
			{
				vertical:true,
				visible:3,
				auto:1500,
				speed:2000,
				easing:'easeInOutBack'
			});
	});
	$('.ticker li p').hover(function () {
		$(this).stop().animate({fontSize:'.9em', color:'#ffffff'}, 500);
	}, function () {
		$(this).animate({fontSize:'.8em', color:'#B3D2CB'}, 200);
	});


	//ürünler photos
	var firstimg = 'http://'+document.domain+'/lib/Resm/resm/_/'+$('#thumb img:first').attr('alt')+'B.jpg';
	$('.sedir-big-back img').attr('src', firstimg);
	$('#thumb img').hover(function () {
		var bigimg =  'http://'+document.domain+'/lib/Resm/resm/_/'+$(this).attr('alt')+'B.jpg';
		$('.sedir-big-back img').attr('src', bigimg);
	console.log(bigimg);
	});
	//ürünler photos


	//iletişim form
	$('.large').click(function () {
		$.post(document.URL, {'adSoyad':$('#adsoyad').val(), 'email':$('#email').val(), 'telefon':$('#telefon').val(), 'konu':$('#konu').val(), 'mesaj':$('#mesaj').val()},
			function (data) {
				$('#sonuc').html(data);
			});
	});
//iletişim form

});
