// JavaScript Document
// This document provides the actual functions which you have to call when you want to display an RSS feed.
// Every line is commented so you can know what to use and where to use it.
	
    $(document).ready( function() {

		    live3=new liveGuru();
	 	    live3.init({
				  extract_text:["title","pubDate","description"],
				  print_text: ["title","pubDate","description"],  //// the text that will appear on the list, you can set multiple options at once
				  link_text: ['link'],    /// the link attached to the selected tag
				  link_attached_to: ['title'],    /// attach the link to specified tags
		          target:"comenzi_feed",
		   		  maxItems:4,
				  showMore:2,
				  timeout:1500,
				  url:"/liveupdate/source.php",
				  slideItems:1, // number of items (offset) when slinding
				  attach_position:"top",  //top / bottom///
				  openLinkMethod:"_blank", /// _blank or _self
				  feed_link:"http://www.workerscompensation.com/compnewsnetwork/news/index.1.rss",  /// rss feed link 
				  order: "DESC",  /// ASC and DESC
				  id:"pubDate"      // do not forget de unique identifier
             
		   });		
			 var live4=new liveGuru();
	 	     live4.init({
				  extract_text:["title","pubDate","description"],
				  print_text: ["title","pubDate","description"],  //// the text that will appear on the list, you can set multiple options at once
				  link_text: ['link'],    /// the link attached to the selected tag
				  link_attached_to: ['title'],    /// attach the link to specified tags
		          target:"news_feed",
		   		  maxItems:20,
				  showMore:2,
				  timeout:1500,
				  url:"/liveupdate/source.php",
				  slideItems:1, // number of items (offset) when slinding
				  attach_position:"top",  //top / bottom///
				  openLinkMethod:"_blank", /// _blank or _self
				  feed_link:"http://www.workerscompensation.com/compnewsnetwork/news/index.1.rss",  /// rss feed link 
				  order: "DESC",  /// ASC and DESC
				  id:"pubDate"     // do not forget de unique identifier
		   });		
		});
