/* HTML5 Element Fix */
var e = ['header','footer','section','nav','article','menu']
   ,baseUrl = 'http://'+document.domain+'/';  
for(var i = 0; i < e.length; i++)document.createElement(e[i]);

$(function($){
	/* HTML5 Placeholder */
	$.supersized({
		slides:[{image:'http://www.knuellermarkt.de/assets/components/gallery/files/16/252.jpg'}]          
	});
	
	/* HTML5 Placeholder */
	$('input, textarea').placeholder();

	/* Audioplayer */
	$('#player').flash({
		swf: 'assets/swf/player.swf'
		,id: "swf-player"
		,wmode: "transparent"
                ,height:25
		,flashvars:{
			mp3: "assets/mp3/Radiospot_Fruehling_2010.mp3"
			,autoplay:($('#home').length ? true : false)
			,showtime:false
			,nopointer:true
			,volume:50
		}
	});

	/* gallery */
	$("#gallery").tabs({
          fx:{
            opacity: "toggle"
           ,duration: 250
          }
          ,select: function(event, ui) {
              $('#gallery .thumbs').children().each(function(itemIndex){
              if(itemIndex!=ui.index){
                $(this).fadeTo('slow', 0.5, function(){});
              }else{
                $(this).fadeTo('slow', 1, function(){});
              }
            });
	  }
	});
        $("#gallery").tabs("rotate", 3000, true);
	$('#gallery a[rel=lb]').lightBox({
		fixedNavigation: false
		,imageBlank: baseUrl+'assets/images/lightbox-blank.gif'
		,imageLoading: baseUrl+'assets/images/lightbox-loading.gif'
		,imageBtnClose: baseUrl+'assets/images/lightbox-btn-close.gif'
		,imageBtnPrev: baseUrl+'assets/images/lightbox-btn-prev.gif'
		,imageBtnNext: baseUrl+'assets/images/lightbox-btn-next.gif'
		,txtImage: 'Bild'
		,txtOf: 'von'
	});
});
