(function($) {
	Drupal.behaviors.myTheme = {
		attach: function(context,settings) {
			$('#side .content>ul>li>a').css('border', 'none');
			
			if (Drupal.settings.cialog_language == "de") {
				var placeh = 'Suche';
			}
			else {
				var placeh = 'Search';
			}
					
			$('#head #search .form-text').focus(function() {
				if ($(this).val() == placeh) {
					$(this).val('');
				}
			}).blur(function() {
				if ($(this).val() == "") {
					$(this).val(placeh);
				}
			}).blur();
			
			$('#head #search .form-submit').val('go');
		}
	};
})(jQuery);
;

