// 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
	$("#scrollable").scrollable({horizontal:true});
	
});
