// Created 5/5/10 - Core Web Solutions


// Image rotate right column)
$(function(){
			
				var current = 1;
				var rotateDiv = $('div#rotate');
				function rotate(){
					current = current + 1;
					if(current > 23)
						current = 1;
					rotateDiv.fadeOut(function(){
						$(this).children('img').attr('src', 'images/gallery/rotate/' + current + '.jpg');
						$(this).fadeOut();
						$(this).fadeIn();
					});
				}
				setInterval(rotate, 5000);
			});

// end Image Rotate


