// Часы 
function ShowClock(){
	var date=new Date();
	var hours=date.getHours();
	var minutes=date.getMinutes();
	if (hours<10) hours="0"+hours;
	if (minutes<10) minutes="0"+minutes;
	//var sec=date.getSeconds();
	document.getElementById("clock").innerHTML=hours+":"+minutes;//+":"+sec;
	setTimeout("ShowClock()",1000);
}

// Открытие фоток в окне под размер фотки
function OpenPictures(pic_src){
	//alert(pic_src)'+event.Left+'
	w=window.open('','win','left=20, top=30, width=100,height=100,titlebar=no,toolbar=no,directories=no,status=no,scrollbars=auto,resize=yes,menubar=no');
	w.document.write("<"+"html><"+"body style='margin:0px;' onLoad='loadImg();'>")
	w.document.write("<img src='"+pic_src+"' id='imgsrc' border='0' OnClick='window.close();' title='Закрыть окно' style='cursor:hand;'>")
	w.document.write("<"+"script>")
	w.document.write("function loadImg(){")
	w.document.write("w=document.getElementById('imgsrc').width;")
	w.document.write("h=document.getElementById('imgsrc').height;")
	//w.document.write("alert(w+'/'+h);")
	w.document.write("window"+".resizeTo(w+10,h+30);")
	w.document.write("}")
	w.document.write("")
	w.document.write("</"+"script>")
	w.document.write("</"+"body></"+"html>")
	w.document.close();
	return false;
}

// Функция показа-скрытия объекта
function ShowHideDiv(x) {
  if(document.getElementById(x).style.display=="none") {document.getElementById(x).style.display="block"}
  else {document.getElementById(x).style.display="none"}
  return false;
}


//------
hs.graphicsDir = '/design/scripts/highslide/graphics/';
hs.align = 'center';
hs.transitions = ['expand', 'crossfade'];
hs.outlineType = 'rounded-white';
hs.fadeInOut = true;
//hs.dimmingOpacity = 0.75;

// Add the controlbar
hs.addSlideshow({
	//slideshowGroup: 'group1',
	interval: 5000,
	repeat: false,
	useControls: false,
	fixedControls: 'fit',
	overlayOptions: {
		opacity: .75,
		position: 'bottom center',
		hideOnMouseOut: true
	}
});


$(document).ready(
//слайдшоу на главной
	function(){
	$('ul#main_pic').innerfade({
		speed: 2500,
		timeout: 4000,
		type: 'sequence'
	});
	
	$("#iframe_fancy, #iframe_fancy2").fancybox({
		'width'				: 290,
		'height'			: 580,
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
});
