$(document).ready(
		function() {
			
			if($('.wt-rotator').length){
				
				var img = new Image();
				var imgSrc = $('.wt-rotator').find('ul > li:first > a').attr('href');

				var multiSlogans = $('.wt-rotator').find('.slogan').length > 1;

				$(img).load(function () {
					var width 	= img.width;
					var height	= img.height;

					if(width)$('.wt-rotator').closest('#banners').parent().width(width);
					if(height)$('.wt-rotator').closest('#banners').parent().height(height);
					
					$('.wt-rotator').find('.slogan').css({top: (height - 120) + "px" });
					
					
					$('.wt-rotator').parent()
						.wtRotator( {
							width :width,
							height :height,
							button_width :24,
							button_height :24,
							button_margin :5,
							auto_start :true,
							delay :6000,
							transition :"random",
							transition_speed :800,
							block_size :75,
							vert_size :55,
							horz_size :50,
							cpanel_align :"BR",
							timer_align :"top",
							display_thumbs :false,
							display_dbuttons :false,
							display_playbutton :false,
							tooltip_type :"image",
							display_numbers :false,
							display_timer :false,
							mouseover_pause :false,
							cpanel_mouseover :false,
							text_mouseover :false,
							text_effect :"fade",
							text_sync :true,
							shuffle :true,
							block_delay :25,
							vstripe_delay :73,
							hstripe_delay :183
					});
									
				
				}).attr({ src: imgSrc });
		
			}
			
		});
