﻿$(document).ready(function() {

    //** main menu **//


$('#nav li').hover(
			function() {


			    if ($('ul', this).is(':hidden')) {
			        $('ul', this).slideDown(400);
			    }
			},

			function() {

			    if ($('ul', this).is(':visible')) {
			        $('ul', this).hide();
			    }
			}

			);



    //** acilir kapanir **//

    $('a#toggle').click(function() {
        var toggleelement = this
        var toggleid = $(toggleelement).attr('name');

        $('#' + toggleid).toggle(300);
        //location.href = "#tavsiye";
        $('html,body').animate({ scrollTop: $("#tavsiye").offset().top }, 'slow');


        return false;
    });



 //** light box**//

    $("a[rel='photo']").colorbox({slideshow: true,slideshowSpeed:5000});
    $(".thickbox").colorbox({ iframe: true, innerWidth: 608, innerHeight: 342 });
    $("#popme").colorbox({ open: true, inline: true, href: "#popup" });
    $("#fullmap").colorbox({iframe: true, width: "90%", height: "90%" });
});	

