// . . . . . . . . . . . . . . . . . . .
//
//	  Mono Graphics AW
//	  www.monographics.fi
//
// . . . . . . . . . . . . . . . . . . .


// Document Ready

$(document).ready(function(){
	
	// H2 Ornaments
	
	$("#content h2").prepend("<img src='/cms/wp-content/themes/johanna/images/h2_left.gif' class='leftOrn' alt='' />");
	$("#content h2").append("<img src='/cms/wp-content/themes/johanna/images/h2_right.gif' class='rightOrn' alt='' />");
	
	
	
	// Google Analytics Track Events 
	
	if (pageTracker != undefined) {
		
		// a
		$('a:not([href*="' + document.domain + '"])').click(function () {													  
			pageTracker._trackEvent('Outbound Links', 'Click', $(this).attr("href"));
		});
		
		// area (image map)
		$('area:not([href*="' + document.domain + '"])').click(function () {													  
			pageTracker._trackEvent('Outbound Links', 'Click', $(this).attr("href"));
		});
	}
	

});