function sendmesaj() {
    var c = document.getElementById('mesaj');
    if(c.value != ''){
	return true;
    }
    else{
	alert('Mesaj Alanı Boş Bırakılamaz!');
	return false;
    }
}
function slideSwitch() {
    var $active = $('#slideshow IMG.active');
    if ($active.length == 0 ) {
	$active = $('#slideshow IMG:last');
    }
    var $next =$active.next().length ? $active.next(): $('#slideshow IMG:first');
    $active.addClass('last-active');
    $next.css({
	opacity: 0.0
    }).addClass('active').animate({
	opacity: 1.0
    }, 1000, function() {
	$active.removeClass('active last-active');
    });
}
function runbanner(){
    swfobject.embedSWF("banner.swf", "flashbanner", "952", "174", "9.0.0","expressInstall.swf", {
	xmlPath:"data.xml"
    }, {
	menu:"false",
	wmode:"transparent"
    });
}
function kurumac(p){
    var c=document.getElementById('detail_'+p);
    if(c.style.display=='none'){
	c.style.display='';
    }else{
	c.style.display='none';
    }
}
