$(document).ready(function() {			
	$(".showcase").each( function(){
	
		$(this).awShowcase(
			{
				width:					600,
				height:					400,
				auto:					false,
				interval:				3000,
				continuous:				true,
				loading:				true,
				tooltip_width:			200,
				tooltip_icon_width:		32,
				tooltip_icon_height:	32,
				tooltip_offsetx:		18,
				tooltip_offsety:		0,
				arrows:					false,
				buttons:				true,
				btn_numbers:			false,
				keybord_keys:			true,
				mousetrace:				false,
				pauseonover:			true,
				transition:				'fade', /* vslide/hslide/fade */
				transition_speed:		500,
				show_caption:			'onhover', /* onload/onhover/show */
				thumbnails:				false,
				thumbnails_position:	'outside-last', /* outside-last/outside-first/inside-last/inside-first */
				thumbnails_direction:	'horizontal', /* vertical/horizontal */
				thumbnails_slidex:		0 /* 0 = auto / 1 = slide one thumbnail / 2 = slide two thumbnails / etc. */
		})
	   }
   );
   
});
