$(function(){
	Galleria.loadTheme('/templates/js/themes/classic/galleria.classic.js');
if($('#galleria').html()){
  $('#galleria').galleria({
        height:550,
        base_class: 'galleria'
  });
}

if($('#galleria2').html()){
	$('#galleria2').galleria({
        height:405,
        base_class: 'galleria_right',
        thumb_crop: false
  });
  
  $('.galleria_right-thumbnails img').each(function(){
    var src = $(this).attr('src');
    //alert(src);
  });
  
  
}

if($('#galleria3').html()){  
  $('#galleria3').galleria({
        height:550,
        base_class: 'galleria'
  });
}
if($('#galleria4').html()){    
	$('#galleria4').galleria({
        height:550,
        base_class: 'galleria'
  });
}

if($('.galleria5').html()){
	$('.galleria5').galleria({
        height:405,
        base_class: 'galleria_right'
  });
}

});


