$(document).ready(function(){
	$("#mail_form").validate();

$("#showcase").showcase({
    animation: { type: "fade" },
    titleBar: { enabled: true, autoHide: false },
    navigator: {    css: { padding:"6px", margin: "4px 0px 0px 0px" }, 
                    item: { 
                        css: { height:"8px", width:"8px", "-moz-border-radius": "8px", "-webkit-border-radius": "8px", backgroundColor: "Transparent", borderColor:"#878787" }, 
                        cssHover: { backgroundColor: "#ababab" },
                        cssSelected: { backgroundColor: "#dadada", borderColor: "#dadada" } 
                    } 
                }
});
	
	/*$(".gallery a").lightBox({
		overlayBgColor: '#FFF',
		overlayOpacity: 0.6,
		imageLoading: '/images/lightbox/lightbox-ico-loading.gif',
		imageBtnClose: '/images/lightbox/lightbox-btn-close.gif',
		imageBtnPrev: '/images/lightbox/lightbox-btn-prev.gif',
		imageBtnNext: '/images/lightbox/lightbox-btn-next.gif',
		containerResizeSpeed: 350,
		txtImage: 'Foto',
		txtOf: 'von'
	   });*/
	   
 /*$('#header_image').innerfade({ speed: 'slow', timeout: 8000, type: 'sequence', containerheight: '220px' });*/
	
});

function validateForm(url) {
    var theAction = 'http://' + window.location.host + url.join('/');
    //console.log(theAction);
    $('#mail_form').attr({action: theAction});
    $('#submit_mail').attr({name: ['request', 'SendMail'].join('')});
}

