﻿

$(document).ready(function() {

    //** main menu **//



$('#ctl00_nav li').hover(



			function() {

			    $('a', this).addClass("active");
			    $('ul a', this).removeClass("active");
			    if ($('ul', this).is(':hidden')) {
			        $('ul', this).slideDown(300);
			    }
			},


			function() {
			    $('a', this).removeClass("active");
			    $(this).removeClass("active");


			    if ($('ul', this).is(':visible')) {
			        $('ul', this).slideUp(100);
			    }
			}

			);





    //** 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%" });




});	

