1234567891011121314151617181920212223242526272829 |
- // (function($) {
- // $.fn.futr = function() {
- // console.log(this);
- // this.each(function(i, item){
- // var children = $(item).children();
- // var maxH = $(children[0]).height();
- // for (var i=0; i < children.length; i++) {
- // if($(children[i]).height() < maxH ) maxH = $(children[i]).height();
- // }
- // $(children).height(maxH + 'px');
- // return this;
- // });
- // }
- // })(jQuery);
- // $('.container1, .container2')
- // .hide()
- // .fadeIn(1000)
- // .futr();
- $(function() {
- $('#gallary').gallery({
- current: 5
- });
- });
|