// JavaScript Document
$(function() {
	// viravnivanie po centru
	var HeightDoc = ((document.getElementById('body').clientHeight - 825)/2);
	if(HeightDoc >= 0){
		$('div.body_box_shadow').css('margin-top', HeightDoc +'px');
		$('body').css('background-position', 'left '+ HeightDoc +'px');
	}

	//scpoll div
	$('#scpolldiv').jScrollPane({showArrows:true, scrollbarWidth:16, wheelSpeed:80});
	
	//style for select
	if ($('select').length){
		$("select").selectbox();
	}

	// galleryy
	if ($("#scrollable").size() > 0) {
		var si = $("#scrollable").children("div.items").find("a").size();
		if (si <= 5) {
			$("#scrollable").children("a.prev").hide();
			$("#scrollable").children("a.next").hide();
		}
	
		$("#scrollable").scrollable({horizontal:true});
	}
});

