// On DOMReady:
$(function () {

	// Preload the nav background image.
	$('<img>').attr('src', '/lib/images/transpBlack50.png');
	
	// Set up focus and blur binds to the search bar.
	$('#search_box').bind('focus', function() {
		if ($(this).val() == 'SEARCH')
		{
			$(this).val('');
			$(this).css('text-align', 'left');
		}
	});

	$('#search_box').bind('blur', function () {
		if ($(this).val() == '')
		{
			$(this).css('text-align', 'right');
			$(this).val('SEARCH');
		}
	});
	
	if ($('#badges').length)
	{
		$('#badges').css('display', 'block');
		$('#badges').codaSlider();
	}
	
});