jQuery(document).ready(function($){ // // fancyboxes // $('.fancybox').fancybox({ // width : 800, // height : 600, // minWidth : 100, // minHeight : 100, // maxWidth : 9999, // maxHeight : 9999, // // autoSize : false, // autoHeight : false, // autoWidth : false, // // autoResize : true, // fitToView : true, // aspectRatio : true, // topRatio : 0.5, // leftRatio : 0.5, // // scrolling : 'auto', // 'auto', 'yes' or 'no' // wrapCSS : '' // }); // // // run carousels // $('.carousel').carousel({ // //interval: 4000, // in milliseconds // }); // // $('.fancybox-media') // /*.attr('rel', 'media-gallery')*/ // .fancybox({ // openEffect : 'none', // closeEffect : 'none', // prevEffect : 'none', // nextEffect : 'none', // // autoSize: true, // /*width: 600, // height: 330,*/ // // type: "iframe", // iframe : { // preload: false // }, // // arrows : false, // helpers : { // media : {} // // buttons : {} // } // }); $('img').each(function(idx, el) { if ( $(el).closest('td').css('display') == 'table-cell' ) { $(el).css('width', '100%'); } $(el).removeAttr('width').removeAttr('height'); $(el).addClass('img-responsive'); }); $('.nav-logo').html(''); $('.nav-logo').parent().css('width','200px'); $('#footernav ul li:last').css('border-right','none').css('padding-right','0'); });