$(document).ready(function(){
	
	
	var form_validation = $('<input type="hidden" name="jsactive" value="true" />');

$('#email-form').prepend(form_validation);

  $('#navigation-global > ul').superfish({ 
            delay:       1000,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: true                            // disable drop shadows 
        }); 

	
	
/**
 * Lighbox
 */	


var lightbox_config = {
	initialWidth: '18%',
	initialHeight: '20%',
 	maxWidth: '80%',
 	maxHeight: '80%',
	opacity: 0.8,
 	current: '{current} von {total}',
 	prevous: 'Voriges',
 	next: 'Nächstes',
 	close: 'Schließen'
 }



var image_links = $('#col1_content img').parents('a[href$=.jpg], a[href$=.png], a[href$=.gif]');


$(image_links).colorbox(lightbox_config);
//$(image_links).addClass('thickbox');

$('#materials').find('a').each(function (i) {

	dest = $(this).attr('href');
	dest = dest;
	//console.log(dest);
    $(this).colorbox({inline:true, href:dest});
});	





});
