(function($){
	$(document).ready(function() {
		var ready = true;
		$('ul#ibm-slider-holder > li').mouseover(function () {
			var _this = this;
			var position = 0;
			if($(this).hasClass('ibm-first')){
				position = 0;
			} else if($(this).hasClass('ibm-second')){
				position = 1;
			} else if($(this).hasClass('ibm-third')){
				position = 2;
			}

			if(!ready){
				$("#ibm-slider > div:not(':last'):not(':eq(" + position + ")')").each(function(){
					if($(this).is(':animated')){
						$(this).stop(true, true);
					}				
				});				
			}
			
			ready = false;

			// hide all other div's
			$("#ibm-slider > div:not(':last'):not(':eq(" + position + ")')").hide();
			
			$('img', this).animate({"top": "-=15px"}, "medium").animate({"top": "+=15px"}, "medium");
			$('#ibm-slide-' + (position + 1)).fadeIn(600, function(){
				ready = true;
			});
			
			$('img[id^="ibm-thumbnail-im"]:not([id="ibm-thumbnail-im' + (position+1) + '"])').stop(true, true).animate({'top': '0px'}, 'medium');
			
		});	
	});
})(jQuery);

