function dUrl(cUrl) {
	if(document.URL.indexOf(cUrl)>0) return true;
	else return false;
}

function hepsiniKapa () {
	var manset = $$('.manset');
	manset.each(function(item,index) {
		item.style.display = 'none';
		item.fade('out');
	});
	
	var mansetust = $$('.mansetust');
	mansetust.each(function(item,index) {
		item.style.display = 'none';
		item.fade('out');
	});
	
}

hepsiniKapa();

if(!dUrl('?') || dUrl('oyla'))
window.addEvent('domready', function() {
	hepsiniKapa();
	$('manset1').style.display = 'block';
	$('manset1').fade('in');
	$('mansetust1').style.display = 'block';
	$('mansetust1').fade('in');
	var mansetno = $$('.mansetno');
	mansetno.each(function(item,index) {
		item.addEvent('mouseenter', function(e) {
			hepsiniKapa();
			$('manset'+item.id.substr(8)).style.display = 'block';
			$('manset'+item.id.substr(8)).fade('in');
			$('mansetust'+item.id.substr(8)).style.display = 'block';
			$('mansetust'+item.id.substr(8)).fade('in');
			$('mansetyazi'+item.id.substr(8)).highlight('#cccccc');
			$('mansetno'+item.id.substr(8)).highlight('#cc0000');
		});
	});
});

window.addEvent('domready', function() {
	var kose2 = $$('.kose2');
	kose2.addEvent('mouseenter', function(){
    this.highlight('#cccccc');
});
	var sag2 = $$('.sag2');

	sag2.addEvent('mouseenter', function(){
    this.highlight('#cccccc');
});
	var mansetyazi = $$('.mansetyazi');

	mansetyazi.addEvent('mouseenter', function(){
    this.highlight('#cccccc');
});
	
});