jQuery(window).bind("load", function() {
	jQuery(document).ready(function($) {

		$("div#teaser div.csc-textpic-imagewrap").fadeIn(1000);

		var img_sources = [];
			$( "div.fce-crossslide-element img" ).each(
			function() {
				img_sources.push({src: $(this).attr("src")});
			}
		);

		$("div.fce-crossslide-container").fadeIn("slow", function() {
			$(this).crossSlide({
				sleep: 5,
				fade: 2
			}, img_sources);
		});

		$("form#search-form").submit(function() {
			if ($("input#search-form-input").val().length > 2) {
				return true;
			}

			return false;
		});

	});
});

function searchform_submit() {

	if (jQuery("#search-form-input").val().length > 2) {
		jQuery("#search-form").submit();
	}

}
