$(document).ready(function(){
	$("#slider").easySlider({
		auto: true,
		continuous: true,
                numeric: true,
                pause: 15000
	});

    $('#controls1 a').each(function() {
        $(this).text($(this).text().replace('1','Altyapı'));
    });

    $('#controls2 a').each(function() {
        $(this).text($(this).text().replace('2','Yönetim'));
    });

    $('#controls3 a').each(function() {
        $(this).text($(this).text().replace('3','Modüller'));
    });

    $('#controls4 a').each(function() {
        $(this).text($(this).text().replace('4','Tasarım'));
    });

    $('#controls5 a').each(function() {
        $(this).text($(this).text().replace('5','Gelişmiş'));
    });

    $('#controls6 a').each(function() {
        $(this).text($(this).text().replace('6','E-pazarlama'));
    });

    $('#controls7 a').each(function() {
        $(this).text($(this).text().replace('7','Destek'));
    });

});

