jQuery(document).ready(function(){
	_radio = jQuery('.radiobuttons input');
	
	_radio.click(function(){
		hideShow();
	});
	hideShow();
	function hideShow() {
		_radio.each(function(){
			var _id = jQuery(this).val();
			if (this.checked) jQuery('#'+_id).show();
			else jQuery('#'+_id).hide();
		});
	}
	
	_input1 = jQuery('#cse-search-box input.text');
	_input2 = jQuery('#cse-search-box2 input.text');
	
	_input1.focus(function(){
		if (jQuery(this).attr('value') == 'TVfacts.de') jQuery(this).attr('value', '');
	});
	_input2.focus(function(){
		if (jQuery(this).attr('value') == 'Google.com') jQuery(this).attr('value', '');
	});
	_input1.blur(function(){
		if (jQuery(this).attr('value') == '') jQuery(this).attr('value', 'Suchbegriff eingeben');
	});
	_input2.blur(function(){
		if (jQuery(this).attr('value') == '') jQuery(this).attr('value', 'Suchbegriff eingeben');
	});
});
