// Script file for DudeAmI.com skin

(function ($) {
	$(document).ready(function () {
		$('#s').focus(function () {
			if ($(this).val() == "Search") $(this).val("");
			$(this).removeClass('unfocused');
		});
		$('#s').blur(function () {
			if ($(this).val() == "") {
				$(this).addClass('unfocused');
				$(this).val('Search');
			}
		});
		$('.search_content').css('display', 'none');
		$('.search_show').click(function () {
			if ($(this).data('clicked') != 1) {
				$('.search_show').data('clicked', 0);
				$('.search_show div').remove();
				$('.search_content').css('display', 'none');
				$('.search_content', $(this).parent()).css('display', 'block');
				$(this).append('<div style="margin: 0; font-size: 12px; font-weight: bold;">Click again to view full page</div>');
				$(this).data('clicked', 1);
				return false;
			}
		});
	});
})(jQuery)