$(function() {	$('img[data-hover]').hover(function() {		$(this).attr('tmp', $(this).attr('src'));		$(this).attr('src', $(this).attr('data-hover'));	},function() {		$(this).attr('src', $(this).attr('tmp'));	});   $('DIV.view-faq').find('.views-field-title').each(function(){      $(this).siblings('.views-field-body').hide();      $(this).click(function(){         $(this).siblings('.views-field-body').toggle();      });   });	/*	window.setInterval(function(){		$('#webcamimg').attr('src', 'http://kamera.skibezovec.sk:10300/jpg/image.jpg?'+Math.random());	}, 13000);	*/});
