﻿$(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;
    });


    //**//
    $('#maillistkayit').click(function () {
        $('#jxsonuc').show(100);
        var email = $("input#eemail").val();
        var lang = $("input#lang").val();

        var dataString = 'email=' + email+ '&lang=' + lang;

        $.ajax({
            type: "POST",
            data: dataString,
            url: "/mail_liste_ekle.ashx",
            success: function (goster) {
                $('#jxsonuc').html(goster);
            }
        });

        return false;
    });

    //***email adres***//
    $('.default-value').each(function () {
        var default_value = this.value;
        $(this).focus(function () {
            if (this.value == default_value) {
                this.value = '';
            }
        });
        $(this).blur(function () {
            if (this.value == '') {
                this.value = default_value;
            }
        });
    });


 //** 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%" });
});	

