/* <![CDATA[ */
		jQuery(document).ready(function($) {
			
			// Activeaza functiile aici
			$('.zoom-pic').mouseenter(function(e) {
				$(this).children('a').children('img').animate({ height: '105', left: '0', top: '0', width: '310'}, 400);
				$(this).children('a').children('span').fadeIn(800);
			}).mouseleave(function(e) {
				$(this).children('a').children('img').animate({ height: '115', left: '0', top: '0', width: '320'}, 400);
				$(this).children('a').children('span').fadeOut(200);
			});
			
			$('.zoom-thumb').mouseenter(function(e) {
				$(this).children('a').children('img').animate({ height: '85', left: '0', top: '0', width: '85'}, 400);
				$(this).children('a').children('span').fadeIn(800);
			}).mouseleave(function(e) {
				$(this).children('a').children('img').animate({ height: '95', left: '0', top: '0', width: '95'}, 400);
				$(this).children('a').children('span').fadeOut(200);
			});

			
		});
		
/* ]]> */
