$( document ).ready( function( ){

	FLIR.init();
	FLIR.auto(['h2', 'h3', 'h5', 'h4']);

    $('#menu a[class!=active]').hover(function() {
                                                    $(this).animate({ height : "52px", marginTop: "0px" }, 300);
                                                 },
                                     function() {
                                                    $(this).animate({ height: "37px", marginTop : "15px" }, 300);
                                                });

    $('#realizacje').cycle({
                            fx:     'scrollHorz',
                            speed:   300,
                            timeout: 5000,
                            pause:   1
    });

    $("a.fancy").fancybox({
                            'zoomSpeedIn': 300,
                            'zoomSpeedOut': 300,
                            'overlayShow': false
    });
});