$(document).ready(function() {
	// 	Client List
		$('.col3 ul li:nth-child(2n)').css('border', 'none');

		$('.col3 ul li:nth-child(-n+6)').css('border-bottom', '1px solid #e1e5e9');

		$('.col3 ul li a img').not(this).stop(false, false).css('opacity', 0.5);
		$('.col3 ul li a img').hover(function () {
			$(this).stop(false, false).fadeTo('slow', 1);
		},
		function () {
			$(this).stop(false, false).fadeTo('slow', 0.5);
		});
		
		
	//	bxSlider Functions
		$('.rs-slider').bxSlider( {
			auto: true,
			pause: 7500,
			prevText: 'Geri',
			nextText: 'İleri'
		});
		
		
	//	Entry List
		$('.entry-list li:nth-child(2n)').css('padding', '0');
		
	
	//	Refrence List
		$('.refrence-list li:nth-child(5n)').css('border', 'none');

		$('.refrence-list li:nth-child(n+6)').css('border-top', '1px solid #e1e5e9');
		
		$('.refrence-list li a img').not(this).stop(false, false).css('opacity', 0.5);
		$('.refrence-list li a img').hover(function () {
			$(this).stop(false, false).fadeTo('slow', 1);
		},
		function () {
			$(this).stop(false, false).fadeTo('slow', 0.5);
		});
		
		
		$('textarea').parent().css('position', 'static');
});


//	Cufon Font Replace
	Cufon.replace('.column h2, .post-header h2, .entry h4, .entry-list p a, .copyright p.phone', {
		hover: true
	});
