(function ($) {
// VERTICALLY ALIGN FUNCTION
$.fn.vAlign = function() {
	return this.each(function(i){
	var ah = $(this).height();
	var ph = $(this).parent().height();
	var mh = Math.ceil((ph-ah) / 2);
	$(this).css('padding-top', mh);
	});
};
})(jQuery);

jQuery(document).ready(function() {
	jQuery('.sidebar-promotion a[href*="youtube"]').each(function(index, el){
		jQuery(el).addClass('cboxElement')
		.colorbox({
			iframe: true,
			innerWidth:425,
			innerHeight:344,
			speed:500
		});
	});
});;

