(function($) {	$.fn.projectlist = function(options) {		options = jQuery.extend({			time : 500		}, options);		return this.each(function() {			var item = $(this);			var projects = item.find('ul.projects > li');			var images = projects.children('ul.media');			images.hide();			init();			function init() {				// open project on click				projects.css('cursor', 'pointer').click(function() {					window.location = $(this).find('div.more a').attr('href');				});				projects.mouseenter(function() {					$(this).children('ul.media').stop(true, true).fadeIn();				});				projects.mouseleave(function() {					$(this).children('ul.media').stop(true, true).fadeOut();				});			}			;		});	};})(jQuery);
