// JavaScript Document


function change(){
	var source = $(this).attr("rel");
	$("#images img").attr("src",source);
}

$(document).ready(function() {


    $("ul.sf-menu").superfish({
    //pathClass: 'current'
});

$('#images a').bind('mouseover', change);
$(".videos-cycle").cycle(
			{
			    fx: 'fade',
			    timeout: 3000
			}
		);

$(".foto-gallery-cycle").cycle(
			{
			    fx: 'turnDown',
			    timeout: 3000
			}
		);

$(".basari-gallery-cycle").cycle(
			{
			    fx: 'turnDown',
			    timeout: 3000
			}
		);

//$(".banner-cycle").cycle(
//			{
//			    fx: 'turnDown',
//			    timeout: 3000
//			}
//		);

//DUYURU-CYCLE
$(".duyuru-cycle").cycle(
			{
			    fx: 'scrollUp',
			    timeout: 5000
			}
		);
});


