var $jquery = jQuery.noConflict();	/* Remove Javascript libary conflicts between Prototype and jQuery */


$jquery(function() {

popUp(); /* all A tags with a reference 'rel="external"' will be opened in a pop-up window */ 

var widget1 = new widget(
{
	'widget'	:	"feeds-widget1",
	'url'	:	"http://www.bmj.com/rss/recent.xml", 
	'track'	:	"w_bmj_podcasts",
	'widget_title'	:	"Latest from BMJ",	
	'style'	:	"bmj",	
	'num_itmes':	"5"
})

var widget2 = new widget(
{
	'widget'	:	"feeds-widget2",
	'url'	:	"http://group.bmj.com/feeds/bmjblogs/", 
	'track'	:	"w_bmj_podcasts",
	'widget_title'	:	"Latest BMJ Group blogs",	
	'style'	:	"bmj",	
	'num_itmes':	"6"
})


})