//Domready functions
$(document).ready(function(){

	$('.small_text').click(function(){
		$(this).attr('value','');
	})
	
	
	$('.acc_helps').click(function() {
		
		if ($(this).next().hasClass('current')) {
			$('.acc_detail').css('display', 'none');
			$(this).next().removeClass('current');
		}
		else {
			$('.acc_detail').css('display', 'none').removeClass('current');
			$(this).next().slideDown(500).addClass('current');
		}
	});
	
	
	//Content box resize
	var c_box_height = ( $(window).height() - 440);
	$('.content_area').css('min-height',c_box_height);
	
	$(window).resize(function(){
		var c_box_height = ( $(window).height() - 440);
		$('.content_area').css('min-height',c_box_height);
	});



        $('ul.kategori_list li a').click(function(){
			w_h = $(window).height();
           $('div.kategori_detail').fadeOut(300);
           $(this).next('div.kategori_detail').fadeIn(500);
        });

        $('div.kategori_detail a.close').click(function(){
           $('div.kategori_detail').fadeOut(300);
        });



        //scroll olaylari
        //Sayfa basina scroll
	$('a.page_up').click(function(){
	      $('html, body').animate({scrollTop:0}, 1);
	      return false;
	});

        $('#category_list').change(function(){
            var obj = $(this).attr('value');
            var _xh = $(obj).offset().top;
           $('html, body').animate({scrollTop: _xh }, 1);
           //$(window).scrollTo( $(this).attr('value') );
        });



	/*$("a[rel=lbox]").fancybox({
	'transitionIn'		: 'none',
	'transitionOut'		: 'none',
	'titlePosition' 	: 'over'
	});*/


	$("a.videobox").colorbox({iframe: true, innerWidth: '560px', innerHeight: '340px'});
		

});
//Dom ready functions end




