﻿//Load custom styles into ckeditor stylescombo plugin.
$(document).ready(function() {
  try {
    CKEDITOR.addStylesSet( 'acacustom',
    [
      // Block Styles
      {name : 'Quote/Testimonial', element : 'p',
           attributes : {'class' : 'testimonial'}},
	  {name : 'Shaded Box', element : 'p',
           attributes : {'class' : 'boxshade'}},	   
      // Inline Styles
      {name : 'Highlight', element : 'span',
           attributes : {'class' : 'highlight'}},
      {name : 'Red Text', element : 'span',
           attributes : {'class' : 'redtext'}},
      {name : 'Small Text', element : 'span',
           attributes : {'class' : 'smalltext'}},		   
    ]);
    CKEDITOR.config.stylesCombo_stylesSet = 'acacustom';
  }
  catch(e){
    //Nothing
  }
});
