includeJavaScript ('./js/config.js');
function secondarySetup () {
	menuSetup ();
	loadPhotos ();
	showContentPhoto ();
	if ($(document).width () > 480) { 
		scrollerSetup ()
	}
}

function scrollerSetup () {
  	$("#mcs_container").mCustomScrollbar("vertical",200,"easeOutCirc",1.00,"auto","yes","yes",10);

}

function menuSetup () {
	$("#menuButtons [id$='Menu']").bind("touchstart", function(){
	    $(this).addClass("hover");
	}).bind('touchend', function(){
	    $(this).removeClass("hover");
	});

	$("#menuIn").click (function () {
		$("#menuBar").width (33);
		$("#menuIn").css ("display", "none");
		$("#menuOut").css ("display", "block");
		$("#menu").css ("display", "none");
		$("#page").css ("background-image", "url('./NP_Mobile/Elements/NP_Mobile_WPAPER-OUT.jpg')");
	}); 
	$("#menuOut").click (function () {
		$("#menuBar").width (106);
		$("#menuOut").css ("display", "none");
		$("#menuIn").css ("display", "block");
		$("#menu").css ("display", "block");
		$("#page").css ("background-image", "url('./NP_Mobile/Elements/NP_Mobile_WPAPER-IN.jpg')");
	});
}
