// JavaScript Document
// light box functions


$(function() {
        $('#lightboxlivemedia a').lightBox();
    });

$(function() {
        $('#lightboximmaginisonore a').lightBox();
    });

$(function() {
        $('#lightboxa a').lightBox();
    });

$(function() {
        $('#lightboxd-esc a').lightBox();
    });

$(function() {
        $('#lightboxlux a').lightBox();
    });



// prettyphoto functions

$(document).ready(function(){
			$("a[rel^='prettyPhoto_menu']").prettyPhoto({
				animationSpeed: 'normal', /* fast/slow/normal */
				padding: 20, /* padding for each side of the picture */
				opacity: 0.45, /* Value betwee 0 and 1 */
				showTitle: false, /* true/false */
				allowresize: true, /* true/false */
				counter_separator_label: ' . ', /* The separator for the gallery counter 1 "of" 2 */
				theme: 'light_square', /* light_rounded / dark_rounded / light_rounded / dark_square */
				callback: function(){}
			});
		});



// start more content functions

$(document).ready(function(){
		$("#morevideo_buttdiv").click(function(){
		var $this = $(this);
		if( $this.is('.morevideo_butt')){
				$("#cont_collapse_morevideo").slideToggle();
				$(this).removeClass('morevideo_butt'); 
				$(this).addClass('morevideo_butt_vis');
				 }
               	else {
				$("#cont_collapse_morevideo").slideToggle();
				$(this).removeClass('morevideo_butt_vis'); 
				$(this).addClass('morevideo_butt');
				 }
                        
				return false;	
		});
	});


$(document).ready(function(){
		$("#moreprint_buttdiv").click(function(){
		var $this = $(this);
		if( $this.is('.moreprint_butt')){
				$("#cont_collapse_moreprint").slideToggle();
				$(this).removeClass('moreprint_butt'); 
				$(this).addClass('moreprint_butt_vis');
				 }
               	else {
				$("#cont_collapse_moreprint").slideToggle();
				$(this).removeClass('moreprint_butt_vis'); 
				$(this).addClass('moreprint_butt');
				 }
                        
				return false;	
		});
	});
// end more content functions	


