$(window).resize(function () {
	nw = $('.album').width();
	nw -= $('.albumdescr').width();
	nw -= $('.albummain').width();

	$(".albumminis-container").width(nw - 32);
});

$(document).ready(function() {
	$(window).trigger('resize');

	$('.albummini-fondu').hide();

	$('.album').bind('mouseover', function() {
		$(this).find('.albumminis-container').show();
		$(this).find('.albumdescr').css('border-top', '1px solid #232323').css('border-bottom', '1px solid #232323');
		$(this).find('.albummini-fondu').show();
	}).bind('mouseout', function() {
		$(this).find('.albumminis-container').hide();
		$(this).find('.albumdescr').css('border-top', '1px solid #010101').css('border-bottom', '1px solid #010101');
		$(this).find('.albummini-fondu').hide();
	});
	$('.album').click(function() {
		location.href = $(this).find('a.albummain').attr('href');
	})
	if (!$.browser.msie)
		$('<img class="albummini-fondu" src="'+INSTALL_PATH+'/images/albummini-fondu.png" alt="" />').appendTo('.album');
});