$(document).ready(function() {
	$("#subscribe_newsletter").focus(function(){this.value=""});
	
	$("#from").focus(function(){this.value=""});
	$("#to").focus(function(){this.value=""});
	
	$("#sort_select").change(function(){$("#filter_form")[0].submit()});
	
	if($("#herodynamic").length>0){
		setTimeout(function(){slideHero(0,1)},10000);
	}
	$("#gallery_left").click(function(){
		$("#gallery").scrollTo('-=400px', 500 );
	});
	$("#gallery_right").click(function(){
		$("#gallery").scrollTo('+=400px', 500 );
	});
	if(window.location.href.indexOf("galerie") > 0)	
		$('#gallery a').lightBox();
	
	if($("#map").length>0){
		initialize();
	}
	
	$("#shop_select").change(function(){$("#shops_form")[0].submit()});
	$("#shopCat_select").change(function(){$("#shops_cat_form")[0].submit()});
	
});

function slideHero(index,way){
	$("#herodynamic").scrollTo( 'img:eq('+index+')', 800 );
	if(index == $(".hero").length-1){
		index-=1;
		way = 0;
	}else{
		if(index ==0)
		{
			index +=1;
			way=1;
		}else{
			if(way==0)
			{
				index -=1;
			}else{
				index+=1;
			}
		}
	}
	
	setTimeout(function(){slideHero(index,way)},10000);
}