// source --> https://atifonline.org/wp-content/plugins/presspoint/paupay/assets/j/paustore.js?ver=3.9.9.983 
jQuery.noConflict();

// WHEN THE DOM IS READY...
jQuery(document).ready(function () {

	jQuery(document).on('click', '.pst-nav', function(){
	
		// CONTROL FOR NAV ITEM ALREADY ON
		if ( jQuery(this).hasClass('on') ) {
			return false;
		} else {
			jQuery('.pst-nav').removeClass('on');
			jQuery('.pst-items').hide();
			var storeChild = jQuery(this).data('storeview');
			jQuery(this).addClass('on');
			jQuery('.'+storeChild).show();
			jQuery.cookie( 'pst_nav', storeChild );
		}
		
	});
	
	if ( jQuery.cookie( 'pst_nav' ) ) {
		var storeChild = jQuery.cookie('pst_nav');
	} else {
		if ( psStore.pstNavDefault != null ) {
			var storeChild = psStore.pstNavDefault;
		} else {
			var storeChild = 'pst-entry-list';
		}
	}
	
	jQuery('.'+storeChild).show();
	jQuery('[data-storeview="'+storeChild+'"]').addClass('on');
	
	jQuery('.pst-nav').tipTip({defaultPosition: 'top', edgeOffset: 2});
	
	jQuery('.pst-gallery .gallery-item a').addClass('thickbox').attr('rel','gallery');
	
	jQuery(document).on('change','#paustore_terms',function(){
		window.location = jQuery(this).val();
	});
	
});