jQuery.fn.work_browse = function(options){
	
	//Defaults
	var options = jQuery.extend({
		unique_id: '',
		browse_total: 1,
		bg_color: '#cccccc', // background color
		playing: true,
		delay: 5000
	},options);

	return this.each(function(){
		options.browse_total = jQuery(this).children('li').length;
		var browse_lis = jQuery(this).children('li');
		
		browse_lis.each(function(i){
			var browse_title = jQuery(this).children().children('.work_title');
			browse_title.hide();
			browse_title.css({
				'opacity': 0.9,
				'height': 175
			});	
			jQuery(this).bind('mouseenter', function(){
				if(browse_title.is(':hidden')){			
					browse_title.slideDown('normal');
				}
			})
			jQuery(this).bind('mouseleave', function(){
				browse_title.slideUp('slow');
			})
		});
	});	
};
	