jQuery(document).ready(function() {
	
	// init sliding mechanism on home:
    jQuery('#mycarousel').jcarousel();
	
	// init "schnellzugang" in right column:
	jQuery('#schnellzugang').change(function(){
		jQuery("#schnellzugang :selected").each(function () {
			linkVal = jQuery(this).attr('value');
			if(linkVal.search(/http.+/) == -1){
				location.href = linkVal;
			}else{
				window.open(linkVal);
			}
		});
	});

	// init "infomaterialien" in right column:
	jQuery('#info').change(function(){
		jQuery("#info :selected").each(function () {
			linkValue = "/service/kontakt/kontaktformular.html?subject="+jQuery(this).attr('value');
			location.href = linkValue;
		});
	});
	
	jQuery("#myController").jFlow({
		slides: "#mySlides",
		width: "420px",
		height: "220px",
		duration: 500,
		prev: ".jFlowPrev",
		next: ".jFlowNext",
		auto: true	
	});
	
});

function openPic(param){
	alert(param);
}