function initMyLocalPage(){
	initVulcanBootstrap();	
	$("#navbarDarkDropdownMenuLink").hover(
			function() { alert("ok"); },
			function() { alert("ok2"); }
	);
	$(".dropdownhover").hover(	    
        function() { $('.dropdownhover-menu', this).fadeIn("fast");},
        function() { $('.dropdownhover-menu', this).fadeOut("fast");    }
	);
	initVulcanKeepAlive("index.php?sayfa=iamalive",120);
	$("#sepet_click_area").click(function(e){ e.preventDefault(); document.location.href = "?sayfa=sepetim"; });
	$(".close_page_on_click").click(function(e){ e.preventDefault(); window.close(); });
	initVulcanAjaxModals(".myajaxmodals");
}
function myPrintPage(){
	setTimeout(function() { 
		window.print(); 
	}, 3000);	
}
function vulcan_update_topcard(){
	$.ajax({ type: "GET",dataType: "json",url: "index.php?sayfa=sepetim&action=js",success : function(obj){  
		if(obj.ref && obj.ref>0){
			$("#id_sepet_adet").html(obj.satir_str2);
			$("#id_sepet_tutar").html(obj.tutar_str2);
		} 
	} });
}
function initArama(tipStr){
	$("#btn_temizle").on("click",function(e){
		e.preventDefault();
		$('#search_text').val("");
		$('#form_grp').val(null).trigger('change');
		$('#kampanya,#yeni,#stokta,#resim').prop("checked",false);
		
	});			
	$("#search_text").focus();	
	initVulcanPopOvers(".fiyatdetaytoggle",{ placement:"left",trigger:"hover",loadingText:'<div class="d-flex justify-content-center mt-3 mb-3" ><div class="spinner-border" role="status"><span class="visually-hidden">YÜKLENİYOR</span></div></div>',template:'<div class="popover popover_fiyat" role="tooltip"><div class="popover-arrow"></div><h3 class="popover-header popover_fiyatheader"></h3><div class="popover-body popover_fiyatbody"></div></div>' });	
}