//jQuery.noConflict();

function hero()
{
	if (jQuery("#hero").length > 0)
	{
		jQuery("#hero").wtGallery({
			num_display:5,
			screen_width:960,
			screen_height:300,
			padding:0,
			thumb_width:152,
			thumb_height:90,
			thumb_margin:30,
			text_align:"bottom",
			caption_align:"bottom",
			auto_rotate:true,
			delay:3000,	
			cont_imgnav:true,
			cont_thumbnav:true,
			display_imgnav:true,
			display_imgnum:false,
			display_timer:false,
			display_thumbnav:true,
			display_indexes:true,					
			display_thumbnum:false,
			display_tooltip:false,
			display_arrow:true,					
			mouseover_text:false,
			mouseover_info:false,
			mouseover_caption:true,
			mouseover_buttons:true,	
			transition:"fade",
			transition_speed:800,
			scroll_speed:600,
			vert_size:45,
			horz_size:45,					
			vstripe_delay:100,
			hstripe_delay:100,
			move_one:false,
			shuffle:true
		});
	}
}


jQuery(document).ready(function()
{
	hero();
});


