jQuery(document).ready(function(){
	$('a[@class="rssLink"]').click(function(){
		
		var feedId = this.id;
		
		$('.rsstitle').text('Waiting...');
		
		$.post('/news/home/modules/stay_connected/rss_popup_details.jhtml',{feedId:feedId, id:'dialogContainer'},function(data){
			$('#modalWindow').html(data);
		});
		
		$('#modalWindow').removeClass('hide');
		
		return false;
	});
	
	$('a[@class="news-rss-link"]').click(function(){
		
		var feedId = 'feed4';
		
		$('.rsstitle').text('Waiting...')
		
		$.post('/news/home/modules/stay_connected/rss_popup_details.jhtml',{feedId:feedId, id:'dialogContainer2'},function(data){
			$('#modalWindow').html(data);
		});
		
		$('#modalWindow').removeClass('hide');
		
		return false;
	});
	
 });