$(function()
{
	$("#search_box").focus(function()
	{
		$(this).attr('value', '');
	});
	
	$("#search_box").blur(function()
	{
		if ($(this).attr('value') == '')
			$(this).attr('value', 'Search Mammologix...');
	});
	
	$("#carousel").carousel(
	{
		animSpeed: "slow",
		autoSlide: true,
		autoSlideInterval: 5000,
		delayAutoSlide: 0,
		loop: true
	});
});