﻿$(document).ready(function() {
	//make external links open in a new window - content div only
	$('a').filter(function() {
        	return this.hostname && this.hostname !== location.hostname;
    	}).addClass("external").attr({target: "_blank"});
	//GA Event tracking 
	//Homepage contact click
	$('a.PLemailPhone').bind('click', function() {
		var pathname = window.location.pathname;
		if (pageTracker) {
			pageTracker._trackEvent('Contact', 'Main Contact Click', pathname);
			//console.log('Contact', 'Main Contact Click', pathname);
		}
	});
	//Social bookmarking click
	$('.lightsocial_img').bind('click', function() {
		if (pageTracker) {
			pageTracker._trackEvent('Social', 'Social Bookmarking Click', $(this).attr('title'));
			//console.log('Social', 'Bookmarking Click', $(this).attr('title'));
		}
	});
	//Homepage contact click
	$('a.contactKindle').bind('click', function() {
		if (pageTracker) {
			pageTracker._trackEvent('Contact', 'Contact Page Click');
			//console.log('Contact', 'Home Contact Click');
		}
	});	
});