var initial_value = "Search Bat-Mania UK...";

$(document).ready(function(){

if($('input[name="q"]').val() == initial_value)
	$('input[name="q"]').css('font-style','italic');

$('button.search_button').replaceWith('<a href="" onclick="document.getElementById(\'partner-pub-5168492330692915:n4nhr7-va5j\').submit();return false;" class="search_button"></a>');

$('input[name="q"]').focus(function(){
	if($('input[name="q"]').val() == initial_value) {
		$(this)
		.val('')
		.css('font-style','normal');
	}
});

$('input[name="q"]').blur(function(){
	if($('input[name="q"]').val() == '') {
		$(this)
		.val(initial_value)
		.css('font-style','italic');
	}
});

$('input.search_button').hover(
function(){
	$(this).attr('src','img/search_over.png');
},
function(){
	$(this).attr('src','img/search.png');
}
);

$('div.picture_grid a span').each(function(){
	$(this).truncate(25);
});

$('div#nav').show();
$('div.menu_section')
	.removeClass('menu_section')
	.addClass('dropmenudiv');
tabdropdown.init('nav');

$('div.character_fade img').each(function(){
	$(this)
	.fadeTo('slow',0.3)
	.hover(
		function(){
			$(this).fadeTo('slow',1);
		},
		function(){
			$(this).fadeTo('slow',0.3);
		}
	);
});
});


