jQuery.noConflict();
jQuery(document).ready(function($) {
	/************************
	*   vstopna materials   *
	************************/
	var As = $('#materials a');
	var w;
	
	// mouseover stuff
	As.mouseover(function () {
		$('span', this).css('top', '7px');
	});	
	As.mouseout(function () {
		$('span', this).css('top', '0px');
	});

});