$(document).ready(function () {
		/* down menu */
	    $('#header .menu li.sub').hover(
	        function () {
	            $(this).addClass('slide');
				$('ul', this).slideDown(100);
				
	    },
	        function () {
	            var liAktiv = this;
				$('ul', this).slideUp(100, function() {
					$(liAktiv).removeClass('slide');
				});
	        }
	    );
		
		
		$('#homeReference .item').hover(
	        function () {
	            var newSrc = $('a img', this).attr('src');
				newSrc = newSrc.replace('.jpg', '-aktiv.jpg');
				$('a img', this).attr('src', newSrc);
	    },
	        function () {
	            var newSrc = $('a img', this).attr('src');
				newSrc = newSrc.replace('-aktiv.jpg', '.jpg');
				$('a img', this).attr('src', newSrc);
	        }
	    );
		
});
