var debug = function(what){
	if(window.console && window.console.firebug){
		console.log(what);
	}       
	else{
		//alert(what);
	}
}
$(document).ready(function() {
	debug('dom ready');
	facebookLink();
	twitterLink();
	emailLink();
	trackUser();
});


//SHARE LINK FUNCTIONS

var facebookLink = function()
{
	pageInfo = shareLink();
	var text = "NUTRO(R) ULTRA(TM) food for dogs can help you nourish your whole dog from head to paw. Contact us today with any questions or comments about our holistic dog food. http://www.ultraholistic.com/special-offers-ultra-dog-food.aspx";
	addLink('#facebook', ['http://www.facebook.com/share.php?u=', pageInfo.linkURL, '&t=', encodeURL(text)]);
}

var twitterLink = function()
{
	pageInfo = shareLink();
	var text = "Nourish your whole dog from head to paw with holistic dog food from ULTRA. Try it today and get $4 off any one bag - http://bit.ly/7XhVhD";
	var linkFormat = ['http://twitter.com/home?status=', encodeURL(text)];
	addLink('#twitter', linkFormat);
}

var emailLink = function()
{
	pageInfo = shareLink();
	var subject = "Thought you might be interested in this dog food, it has superfoods!";
	var body = "Check out this dog food I found. I thought you might be interested in it!  Here is a link to the website - ULTRA(TM) Holistic dog food http://www.ultraholistic.com/ \n\nHere is a little more about the company and the food:\n\nULTRA(TM) cares about the total health of your dog. That's why our holistic dog food gives your dog the nutrients he needs to keep his spirit young and his body active. We deliver this by combining whole ingredients that are good for dogs of all ages, including:\n\n - High-quality proteins \n\n - Antioxidant-rich fruits and vegetables \n\n - Whole grains \n\n - Healthy oil sources \n\n - All the right essential vitamins and minerals \n\nWe call this our ULTRASSENTIAL(R) Superfood Blend (http://www.ultraholistic.com/dog-food-ingredients-essential-blend.html) and it's found in each and every ULTRA(TM) natural dog food product. \n\nHere is a coupon! http://www.ultraholistic.com/special-offers-ultra-dog-food.aspx \n\nDiscover the difference the ULTRA(TM) holistic dog food products can make in your dog's health and happiness throughout any stage in his life. Try ULTRA(TM) food for dogs today and get $4 off any one bag. Get the coupon here: http://www.ultraholistic.com/special-offers-ultra-dog-food.aspx";
	var linkFormat = ['mailto:?Subject=', encodeURL(subject), '&Body=', encodeURL(body)];
	addLink('#email', linkFormat); 
}


var shareLink = function()
{
	var linkURL = encodeURL(getURL());
	var linkTitle = encodeURL(getTitle());
	var linkDescription = encodeURL('NUTRO(R) ULTRA(TM)');

	return {'linkURL': linkURL, 'linkTitle':linkTitle, 'linkDescription':linkDescription}
}

var addLink = function(linkSelector, linkArray)
{
	var linkString = linkArray.join('');
	debug('linkString : ' + linkString);
	var selectorString = linkSelector + ' > a'; 
	$(selectorString).attr('href', linkString);
	$(selectorString).attr('target', '_blank');

}


var getURL = function()
{
	return location.href;
}

var getTitle = function()
{
	return document.title;
}

var getDescription = function()
{
	return document.getElementsByName('meta')['description'].content;
}

var encodeURL = function(urlString)
{
	return escape(urlString);
}

//Used to track user pathways
var trackUser = function()
{
var __wtw_lucky_ref_id = 9234;
var __wtw_lucky_res_id = 6;
var __wtw_lucky_site_id = 1873;
var wa = document.createElement('script'); wa.type = 'text/javascript'; wa.async = true;
wa.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://w1') + '.livestatserver.com/w.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(wa, s);
}
