﻿/* Rozwijajacy sie banner. Copyright Tadeusz Piskozub 2011*/

$(document).ready(function(){
	$(".banner").click( function() {
		$(this).toggleClass('unrolled');
		
		if ( $(this).hasClass('unrolled') )
		{
			$(this).animate( {
				'height' : $(this).attr("maxh")
			},500,function() {
				$(this).children(".fgimg").fadeIn(500);
			});
		}
		else
		{
			var container = $(this);
		
			$(this).children(".fgimg").fadeOut(500,function() {

			container.animate( {
				'height' : container.attr("minh")
			},500);
			
			});
		}
	}); //end click
}); //end document ready

