$(document).ready(function() {
	$(".inputTextNotSearch").labelify({ labelledClass: "labelHighlight" });						   
	
	$(".slidetabs").tabs(".images > div", {
	
		effect: 'fade',
		fadeOutSpeed: "slow",
		rotate: true
	
	}).slideshow({interval:5000});
	
	setTimeout(function(){$(".slidetabs").data("slideshow").play();},5000);
	
	$("a.product_img, #cert").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false,
		'titleShow'		:	false,
		'hideOnContentClick' : true
	});
	

	var scroll_speed = 0.1; // 100 px/ms
	$('#scroll-top').click(function() {
		var html = $('html');
		html.animate({ scrollTop: 0}, parseInt(html.get(0).scrollTop * scroll_speed));
		return!1;
	});

	
});


function checkmail() {
	var mail=document.sform.email.value
	var reg = /\w+@\w+.\w/
	if (!reg.exec(mail))
	  {
	  alert('Неверно введён e-mail адрес!')
	  return(false)
	  }
} 



