function _(sId){return document.getElementById(sId);}

function showHide(el,show,dispStyle)
{
	if (!dispStyle) dispStyle = 'block';
	var _e = _(el);
	if (show)
		_e.style.display=dispStyle;
	else
		_e.style.display='none';
}
function togggle(el)
{
	var _e = document.getElementById(el);
	if(_e.style.display=='' || _e.style.display=='none')
		_e.style.display='block';
	else
		_e.style.display='none';
}
function showImg(path, title, winName)
{
	window.open('showImgf70c.htm?i='+encodeURIComponent(path)+'&title='+encodeURIComponent(title),winName,'toolbar=no,status=yes,location=no,menubar=no,width=200,height=100,left=150,top=50');
}
function showImgGl(path,title,descr,winName)
{
	window.open('showImgGlf70c.htm?i='+encodeURIComponent(path)+'&amp;title='+encodeURIComponent(title)+'&amp;descr='+encodeURIComponent(descr),winName,'resizable=yes,toolbar=no,status=yes,location=no,menubar=no,width=200,height=100,left=150,top=0');
}

// -----------------------------------------------------------------------------

function fReq(virgullu)
{
	var names = virgullu.split(",");
	var elArr;
	var el;
	for (i=0;i<names.length;i++) {
		elArr = document.getElementsByName(names[i]);
		el = elArr[0];
		var ck=true;
		if (el.type=='radio') {
			ck = false;
			for (j=0;j<elArr.length;j++)
				if (elArr[j].checked) ck = true;
		}
		if (el.value=='' || !ck) {
			alert(IYS_LANG['FREQ1']+el.title+IYS_LANG['FREQ2']);
			el.focus();
			return false;
		}
	}
	return true;
}

// -----------------------------------------------------------------------------

$(function(){
    $(".client-comment").submit(function(e){
        if ($(this).valid()) {
            mesajGonder($(this));
        }
        e.preventDefault();
    });
});

var _msjKutuAcik = false;
function msjKutuAc()
{
    if (!_msjKutuAcik) {
        $('.client-comment').slideToggle();
        
        _msjKutuAcik = true;
    }
    window.setTimeout("$('#gorus_ad').focus();", 50);
}

/* Mesaj Gönder */
function mesajGonder(formObj){
	$.ajax({
		type	: 'POST',
		url		: '?act=musteri_gorusleri&id=hepsi&jx=1',
		data	: $(formObj).serialize(),
        success: function(msg) {
            //$(".client-comment-btn").slideUp("fast");
            if (msg == "basarili") {
                $(formObj).hide();
                $(".client-comment").slideUp("fast");
                $(".client-comment-ok").slideDown("fast");
            } else {
                $(".client-comment-err .error").html(msg);
                $(".client-comment-err").slideDown("fast");
            }
        }
	});	
}

function glSayfala(glId, sayfa){
	$('#hizmetOrnekCalismalar').html('Yükleniyor...');
	$.ajax({
		type:"get",
		url:"?act=hizmet&id="+glId+"&sayfa="+sayfa+"&jx=1",
		success: function(ajaxCevap){
			$('#hizmetOrnekCalismalar').html(ajaxCevap);
		}
	});
}


/*timer*/jQuery.timer = function (interval, callback){var interval = interval || 100;if (!callback){return false;} _timer=function(interval, callback) {this.stop = function () {clearInterval(self.id);};this.internalCallback = function () {callback(self);};this.reset = function (val) {if (self.id){clearInterval(self.id);}var val = val || 100;this.id = setInterval(this.internalCallback, val);};this.interval = interval;this.id = setInterval(this.internalCallback, this.interval);var self = this;};return new _timer(interval, callback); };

/*JQUERY PLUGIN - MOUSE WHEEL*/(function($){$.fn.extend({mousewheel:function(f){if(!f.guid)f.guid=$.event.guid++;if(!$.event._mwCache)$.event._mwCache=[];return this.each(function(){if(this._mwHandlers)return this._mwHandlers.push(f);else this._mwHandlers=[];this._mwHandlers.push(f);var s=this;this._mwHandler=function(e){e=$.event.fix(e||window.event);$.extend(e,this._mwCursorPos||{});var delta=0,returnValue=true;if(e.wheelDelta)delta=e.wheelDelta/120;if(e.detail)delta=-e.detail/3;if(window.opera)delta=-e.wheelDelta;for(var i=0;i<s._mwHandlers.length;i++)if(s._mwHandlers[i])if(s._mwHandlers[i].call(s,e,delta)===false){returnValue=false;e.preventDefault();e.stopPropagation();}return returnValue;};if($.browser.mozilla&&!this._mwFixCursorPos){this._mwFixCursorPos=function(e){this._mwCursorPos={pageX:e.pageX,pageY:e.pageY,clientX:e.clientX,clientY:e.clientY};};$(this).bind('mousemove',this._mwFixCursorPos);}if(this.addEventListener)if($.browser.mozilla)this.addEventListener('DOMMouseScroll',this._mwHandler,false);else this.addEventListener('mousewheel',this._mwHandler,false);else this.onmousewheel=this._mwHandler;$.event._mwCache.push($(this));});},unmousewheel:function(f){return this.each(function(){if(f&&this._mwHandlers){for(var i=0;i<this._mwHandlers.length;i++)if(this._mwHandlers[i]&&this._mwHandlers[i].guid==f.guid)delete this._mwHandlers[i];}else{if($.browser.mozilla&&!this._mwFixCursorPos)$(this).unbind('mousemove',this._mwFixCursorPos);if(this.addEventListener)if($.browser.mozilla)this.removeEventListener('DOMMouseScroll',this._mwHandler,false);else this.removeEventListener('mousewheel',this._mwHandler,false);else this.onmousewheel=null;this._mwHandlers=this._mwHandler=this._mwFixCursorPos=this._mwCursorPos=null;}});}});$(window).one('unload',function(){var els=$.event._mwCache||[];for(var i=0;i<els.length;i++)els[i].unmousewheel();});})(jQuery);

/*GANESH PLUGIN - JCAROUSELLITE*/(function($){$.fn.jCarouselLite=function(o){o=$.extend({btnPrev:null,btnNext:null,btnGo:null,mouseWheel:false,auto:null,speed:200,easing:null,vertical:false,circular:true,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null},o||{});return this.each(function(){var b=false,animCss=o.vertical?"top":"left",sizeCss=o.vertical?"height":"width";var c=$(this),ul=$("ul",c),tLi=$("li",ul),tl=tLi.size(),v=o.visible;if(o.circular){ul.prepend(tLi.slice(tl-v-1+1).clone()).append(tLi.slice(0,v).clone());o.start+=v}var f=$("li",ul),itemLength=f.size(),curr=o.start;c.css("visibility","visible");f.css({overflow:"hidden",float:o.vertical?"none":"left"});ul.css({margin:"0",padding:"0",position:"relative","list-style-type":"none","z-index":"1"});c.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"});var g=o.vertical?height(f):width(f);var h=g*itemLength;var j=g*v;f.css({width:f.width(),height:f.height()});ul.css(sizeCss,h+"px").css(animCss,-(curr*g));c.css(sizeCss,j+"px");if(o.btnPrev)$(o.btnPrev).click(function(){return go(curr-o.scroll)});if(o.btnNext)$(o.btnNext).click(function(){return go(curr+o.scroll)});if(o.btnGo)$.each(o.btnGo,function(i,a){$(a).click(function(){return go(o.circular?o.visible+i:i)})});if(o.mouseWheel&&c.mousewheel)c.mousewheel(function(e,d){return d>0?go(curr-o.scroll):go(curr+o.scroll)});if(o.auto)setInterval(function(){go(curr+o.scroll)},o.auto+o.speed);function vis(){return f.slice(curr).slice(0,v)};function go(a){if(!b){if(o.beforeStart)o.beforeStart.call(this,vis());if(o.circular){if(a<=o.start-v-1){ul.css(animCss,-((itemLength-(v*2))*g)+"px");curr=a==o.start-v-1?itemLength-(v*2)-1:itemLength-(v*2)-o.scroll}else if(a>=itemLength-v+1){ul.css(animCss,-((v)*g)+"px");curr=a==itemLength-v+1?v+1:v+o.scroll}else curr=a}else{if(a<0||a>itemLength-v)return;else curr=a}b=true;ul.animate(animCss=="left"?{left:-(curr*g)}:{top:-(curr*g)},o.speed,o.easing,function(){if(o.afterEnd)o.afterEnd.call(this,vis());b=false});if(!o.circular){$(o.btnPrev+","+o.btnNext).removeClass("disabled");$((curr-o.scroll<0&&o.btnPrev)||(curr+o.scroll>itemLength-v&&o.btnNext)||[]).addClass("disabled")}}return false}})};function css(a,b){return parseInt($.css(a[0],b))||0};function width(a){return a[0].offsetWidth+css(a,'marginLeft')+css(a,'marginRight')};function height(a){return a[0].offsetHeight+css(a,'marginTop')+css(a,'marginBottom')}})(jQuery);

var crslPluses = '';
$(document).ready(function(){    
    if( $('#references div.refs').html()!=null ){
        var crslPluses,SlideSayisi;
        var SlideTxts=Array();
        $.timer(1400, function (timer) { if( crslPluses!='references-refs' ){$('#references div.ust a.next').click();} });
        $('#references div.alt').html( $('#references div.refs li:first img').attr('alt') );
        var clss=Array();
        var a = $('#references div.refs a');
        SlideSayisi = a.length;
    	for (var i = 0; i < a.length; i++) {
        	$(a[i]).addClass("a"+i);
            SlideTxts[i]=$(a[i]).children('img').attr('alt');
    	}
    	$("#references div.ust div.refs")
    		.jCarouselLite({mouseWheel:true,vertical:false,visible:1,auto:null,speed:500,btnNext:'#references div.ust a.next',btnPrev:'#references div.ust a.prev',
    				afterEnd:function(bu){
                        $('#references div.alt').html( $(bu).children('a').children('img').attr('alt') );
    				}
    	});
        $("#references").mouseover(function(){ crslPluses='references-refs'; }).mouseout(function() { crslPluses=''; });
    }
});

