	$(document).ready(function(){
			var activeIteration = 0;
			
			$('#previewMenu a').each(function(i){
				var title = $(this).attr('title');
				var descr = $(this).children('img').attr('alt');
				
				if (activeIteration == i) {
					$(this).addClass('activePreview');
						
					$('#preview').html('<div id="previewImg"><img src="' + $(this).children('img').attr('src').replace('t_', '') + '" alt="nahled" ></div><div id="previewTxt"><h2><a href="' + $(this).attr('href') + '">' + title + '</a></h2><p>' + descr + '</p></div>');
				}
				
				$(this).hover(
					function(){
						$(this).removeAttr('title');
						$('.activePreview').removeClass('activePreview');
						$(this).addClass('activePreview');
						
						$('#preview').html('<div id="previewImg"><img src="' + $(this).children('img').attr('src').replace('t_', '') + '" alt="nahled" ></div><div id="previewTxt"><h2><a href="' + $(this).attr('href') + '">' + title + '</a></h2><p>' + descr + '</p></div>');
					},
					function(){
						$(this).attr('title', title);			
					}
				);
				
			});
	});


