/* ✪ COLORBOX ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */

$(document).ready(function() {

	$("a[rel='zoom']").colorbox({title: function(){
	    var title = $(this).attr('title');
	    var desc = $(this).children('img').attr('alt');
	    return '<strong>' + title + '</strong>' + ' ' + desc ;
	    }, 
	    transition : "elastic", 
	    opacity : 0.7, 
	    initialWidth : "736px",
	    initialHeight : "452px",
	    loop : false, 
	    current : "{current} из	 {total}"
	    });
	 $(".zoom").colorbox({rel: false});
	 $(".iframe").colorbox({width:"700px", height:"97%", iframe:true});

}); 

       $(document).ready(function(){

          $(".limit").each(function() {

           //Get the width of the image
           var width = $(this).width();

           //Max-width substitution (works for all browsers)
           if (width > 1324) {
             $(this).css("width", "1324px");
           }

         });

       });
