/* Used in Media List */
$(document).ready(function(){

	// Do show hide. not sure if this is used any more.
	$(".see_more_stuff").click(function(){
		$(this).parents(".module").find(".more_stuff_hidden").toggle();
		return false;
	});

	$(".column_1_2_3 .column_2 .media_list_horizontal_scroller .wrapper").scrollable({ size: 2, clickable: false });

	$(".column_12_3 .column_1 .media_list_horizontal_scroller .wrapper").scrollable({ size: 3, clickable: false });

	// $('img.delayed_image').lazyload({ effect: 'fadeIn', placeholder: '/media/images/trans.gif' });

});