// function startmasonry(){
// 
		// $('#banner_masonry').masonry({
		      // itemSelector: '.imgbox',
		      // isResizable: true,
		      // // set columnWidth a fraction of the container width
		      // columnWidth: 1,
		      // isAnimated : true
		  // });		 
// 
// 
// }

  $(function(){

    var $container = $('#banner_masonry');
  
    $container.imagesLoaded( function(){
      $container.masonry({
		      itemSelector: '.imgbox',
		      isResizable: true,
		      // set columnWidth a fraction of the container width
		      columnWidth: 1,
		      isAnimated : true
      });
    });
  
  });
  

// $(document).resize(function (){	
	// startmasonry();
// });
