jQuery.noConflict();
jQuery(document).ready(function(){ 
        jQuery(document).pngFix();
		jQuery('ul.sf-menu').superfish();
		

    }); 

function  loadAGal(gal) {
jQuery.post('ajax/listfiles.php', { gal:gal } ,function(data) {
  jQuery('#contens').append(data);
  jQuery(function() {
		jQuery('.gallery a').lightBox({fixedNavigation:true,txtImage: 'Image '});
	});
  
});
}

function switchlang(lang) {
	if(lang == 'en') {
		jQuery('#de').toggle('slow');
		jQuery('#de').css('display','none');
		jQuery('#en').fadeIn("slow");
			
	} else if(lang == 'de') {
		jQuery('#en').toggle('slow');
		jQuery('#de').fadeIn("slow");
		jQuery('#en').css('display','none');
		
	}	
}
