(function ($) {
    // VERTICALLY ALIGN FUNCTION
    $.fn.vAlign = function() {
        return this.each(function(i){
        var ah = $(this).height();
        var ph = $(this).parent().height();
        var mh = (ph - ah) / 2;
        //$('#opnunartimi2').html(ah + " " + ph)
        if(ph>0) {
            $(this).css('margin-top', mh);
        }
        });
    };
})(jQuery);

$(document).ready(function() {  //Síğan er loaduğ en t.d. myndir enn ağ loadast
    $('a.lightbox, a[rel=lightbox], a[rel=gallery], a.fancybox').fancybox({
        centerOnScroll: false
    })
    $('.hover').hover(function() {
			$(this).addClass('hoverSel')
	}, function() {
		$(this).removeClass('hoverSel')
	})
})

$(window).load(function() {  //Síğan alveg loaduğ, m.a. myndir
    $('.v_center').vAlign();
})
