jQuery Carousel with hidden feature :)

Drupal is a free and open source content management system (CMS) written in PHP and distributed under the GNU General Public License. ...
The act of making something publicly available; presenting news or other information by broadcasting or printing it; "he prepared his presentation carefully in advance"
unique shirts by suleman, shirts for men, men apparels.
Visit: http://www.giftlelo.com/
In computer science, a graph is an abstract data structure that is meant to implement the graph concept from mathematics.
The second generation of the World Wide Web, especially the movement away from static webpages to dynamic and shareable content and social networking
ActionScript is Adobe Flash's own embedded scripting language. It has a JavaScript like structure and has developed into a flexible and powerful platform for Flash games and interactive multimedia.
   

Yes! I was talking about this feature. You can have message box like above. See the source code for details.
You can modify message with your own CSS.

For your reference. I am adding initialized script. Dont forget to add script in header too. see main page.
What pareameter is required for this. Just three:- showMessage:true, messageClass:'.message', messageOpacity:0.8


<script type="text/javascript">
$(document).ready(function() {
	try {
		var oHandler = $("#carouseldiv").msCarousel({boxClass:'div.set', width:516, height:198, scrollSpeed:500, showMessage:true, messageClass:'.message', messageOpacity:0.8}).data("msCarousel");
		$("#next").click(function() {
			oHandler.next();
		});
		$("#previous").click(function() {
			oHandler.previous();
		});

	} catch(e) {
		alert(e.message);
	}

})
</script>