function mCustomScrollbars(){
	/* 
	malihu custom scrollbar function parameters: 
	1) scroll type (values: "vertical" or "horizontal")
	2) scroll easing amount (0 for no easing) 
	3) scroll easing type 
	4) extra bottom scrolling space for vertical scroll type only (minimum value: 1)
	5) scrollbar height/width adjustment (values: "auto" or "fixed")
	6) mouse-wheel support (values: "yes" or "no")
	7) scrolling via buttons support (values: "yes" or "no")
	8) buttons scrolling speed (values: 1-20, 1 being the slowest)
	*/
	$("#mcs_container").mCustomScrollbar("vertical",500,"easeOutCirc",1.05,"auto","yes","yes",5); 
	$("#mcs2_container").mCustomScrollbar("vertical",500,"easeOutCirc",1.05,"auto","yes","yes",5); 
}
$(document).ready(function(){
	$("body").addClass("hasjs");
	mCustomScrollbars();
	$("ul.gallerylist li:even").addClass("even");
	Shadowbox.init({
	    handleOversize: "drag",
	    modal: true
	});
});
