﻿

$(document).ready(function() {

    //** main menu **//


    $('#nav li').hover(
			function() {


			    if ($('ul', this).is(':hidden')) {
			        $('ul', this).slideDown(300);
			    } 
			},


			function() {


			    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**//

       $('#photo a,#photo-gallery a').lightBox();




});	

