// jQuery Colorbox
$(document).ready(function(){
    $.fn.colorbox.settings.transition = "elastic";
    $.fn.colorbox.settings.bgOpacity = "0.9";
	$.fn.colorbox.settings.contentCurrent = "image {current} of {total}";
	$(".cpModal").colorbox();
	$("#ajax").colorbox({contentWidth:"300px", contentHeight:"195px"});
	$(".video1").colorbox({contentWidth:"350px", contentHeight:"350px", contentIframe:true});
	$("#google").colorbox({contentWidth:"800px", contentHeight:"500px", contentIframe:true});
	$("#inline").colorbox({contentWidth:"500px", contentInline:"#inline-content"});
});