//	Javascript to tag file downloads and external links in Google Analytics
//	To use, place reference to this file should be placed at the bottom of all pages, 
//	just above the Google Analytics tracking code.
//	All outbound links and links to non-html files should now be automatically tracked.
//
//  +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//	Created by: 	Colm McBarron, colm.mcbarron@iqcontent.com
//	Modified by: 	Dominik Jais
//	Last updated: 	12-Feb-2006
//	+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//


//* Javascripts-Aufrufe */
$(document).ready(function() {

	// SlottingListe
	$('div#nextBtn a').click(function() {
		//OEWA
		oewa_event('weitere_nachrichten');
	});	
	$('div#prevBtn a').click(function() {
		//OEWA
		oewa_event('weitere_nachrichten');
	});	
	
	$('a.LoginBox').click(function() {
		//OEWA
		oewa_event('Anmeldung');
	});	
	
	//Top and Most
	$('#mostCommentsList li').mouseenter(function() {
		//OEWA
		//oewa_event('Meistkommentierte');
	});	
	$('#popularList li').mouseenter(function() {
		//OEWA
		//oewa_event('Meistkommentierte');
	});	
						   
});






