/**  
 * Settings
 * JavaScript file for CatholicIreland.net Streaming
 * Version 2
 * Created 14.03.06
 * Created by John McDermott [john@catholicireland.net]
 * Update 22.08.06
 * Updated by Dave Bolger [dave@catholicireland.net
 * All code copyright CatholicIreland.net
 */


/** 
 * Feed Settings 
 *
 * SAMPLE SETTINGS 
 * var siteURL = "http://www.example.ie"; // example = "http://www.yourparish.ie";
 * var feedPAGE = "content.htm"; // example = "content.htm" This is were the news article and features appear; 
 * var feedLANGUAGE = "php"; // example = "php"; (no dot and all lowercase)
 */
var siteURL = "http://www.corkandross.org"; // example = "http://www.yourparish.ie"
var feedPAGE = "feeds.jsp"; // example = "content.htm" 
var feedLANGUAGE = "jsp"; // example = "php"; (no dot and all lowercase)
/******** END OF SETTINGS ********/



/**
 * Display Options
 *
 * These are the display options for the news 
 */
var newsSTYLE = "row"; // options: row | col
var newsIMAGES = "first"; // options: first | none | all

/**
 * Content Options
 *
 * The only variable to change is extraURLPARAM, leave all others
 */
var extraURLPARAM = ""; // leave blank unless you use a CMS and must pass parameters with the href (&com_wrapper=test etc.)
var contentTagID = "content";
var newsTagID = "newsmodule";
var featuresTagID = "featuresmodule";
var specialTagID = "specialmodule";

/**
 * Div Names
 *
 * Names of the div's were content appears in the html
 * Use for Div names for css
 */
var contentDiv = "CiContent";
var newsDiv = "CiNews";
var featuresDiv = "CiFeatures";
var specialDiv = "CiSpecial";



