$(document).ready(function() {
    /*$('#cycle-in').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});*/
	$('.cycle').cycle({
		fx: 'scrollUp', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed:   3000,
		timeout: 2000,
		pause:   1,
		height: 180,
		cleartypeNoBg: true
	});
	$('a[rel*=popup]').facebox();
	/* MANSET */
	$(".thumb a").hover(function(){
        var imgHref = $(this).children().attr('src');  //get the src of the thumbnail
		var title = $(this).attr('title');
		var body = $(this).attr('rel');
		$('.big').attr('src',imgHref);
		$('#alt-manset h2').html(title);
		$('#alt-manset p').html(body);
        $(".thumb a").removeClass("selected");  //remove .selected class from all other links
        $(this).addClass("selected");  //add .selected class to current link
    });
	$('.haberler .vid').hide();
	$('.togglevideo').click(function() {
		if($(this).hasClass('clicked')){
			$(this).removeClass('clicked');
			$('.haberler .vid').hide();
			$(this).html('HABERİN VİDEOLARINI GÖSTER');
		}
		else{
			$(this).addClass('clicked');
			$('.haberler .vid').show();
			$(this).html('HABERİN VİDEOLARINI GİZLE');
		}
		return false;
	});

});

jQuery(function($) {
  //put your jQuery code here
	$('#cycle-in').crossSlide({
	  fade: 2
	}, [
	  {
	    src:  'slide3/manzara_1.jpg',
	    href: '#',
	    from: '100% 100% 1x',
	    to:   '100% 60% 1x',
	    time: 5
	  }, {
	    src:  'slide3/belediye_binasi.jpg',
	    href: '#',
	    from: 'top left',
	    to:   'bottom right 1x',
	    time: 5
	  }, {
	    src:  'slide3/manzara_2.jpg',
	    href: '#',
	    from: '100% 80% 1x',
	    to:   '80% 0% 1x',
	    time: 5
	  }, {
		src:  'slide3/tas_kopru.jpg',
	    href: '#',
	    from: 'top left 1x',
	    to:   'bottom right 1x',
	    time: 5
	  },{
		src:  'slide3/manzara_3.jpg',
		href: '#',
		from: '100% 80% 1x',
		to:   '80% 0% 1x',
		time: 5
	  }
	]);
});
