var debug = function(what){
	if(window.console && window.console.firebug){
		//console.log(what);
	}       
	else{
		//alert(what);
	}
}
$(document).ready(function() {
	debug('dom ready');
	emailLink();
	facebookLink();
	twitterLink();
	diggLink();	
	deliciousLink();
});


//SHARE LINK FUNCTIONS

var emailLink = function()
{
	pageInfo = shareLink();
	var subject = "ULTRA(TM) food for dogs can nourish your whole dog from head to paw.";
	var body = "Only ULTRA(TM) holistic dog products contain a unique combination of nutrient-dense superfoods in our new ULTRASSENTIAL(TM) Superfood Blend. These high quality ingredients work together to promote a long and healthy life for your dog. Try a bag today! \n\n Get $2 off any 4 or 4.5 lb. bag of ULTRA(TM) food for dogs. \n\n Use this coupon and pass it along! \n\n ";
	var linkFormat = ['mailto:?Subject=', encodeURL(subject), '&Body=', encodeURL(body) + pageInfo.linkURL];
	addLink('#email', linkFormat); 
}

var facebookLink = function()
{
	pageInfo = shareLink();
	var text = "Nourish your whole dog from head to paw with ULTRA(TM) holistic food for dogs. And now get $2 off any 4 or 4.5 lb. bag of ULTRA(TM) dry kibble. Get the coupon here.";
	var linkFormat = ['http://www.facebook.com/share.php?u=', pageInfo.linkURL, '&t=', encodeURL(text)];
	addLink('#facebook', linkFormat); 
}

var twitterLink = function()
{
	pageInfo = shareLink();
	var text = "Get $2 off any 4 or 4.5 lb. bag of ULTRA(TM) holistic food for dogs. Go to http://bit.ly/7XhVhD to get your coupon now! Pass it on! ";
	var linkFormat = ['http://twitter.com/home?status=', encodeURL(text)];
	addLink('#twitter', linkFormat);
}

var diggLink = function()
{
	pageInfo = shareLink();
	var text = "Get $2 off any 4 or 4.5 lb. bag of ULTRA(TM) food for dogs. ";
	var desc = "ULTRA(TM) food for dogs can be found at your local pet retail store."
	var linkFormat = ['http://digg.com/submit?url=', pageInfo.linkURL, "&title=", encodeURL(text), "&bodytext=", encodeURL(desc)];
	addLink('#digg', linkFormat);
}

var deliciousLink = function()
{
	pageInfo = shareLink();
	var text = "Get $2 off any 4 or 4.5 lb. bag of ULTRA(TM) holistic food for dogs.";
	var linkFormat = ['http://del.icio.us/save?url=', pageInfo.linkURL, "&title=", encodeURL(text)];
	addLink('#delicious', linkFormat);
}

var myspaceLink = function()
{
	pageInfo = shareLink();
	var linkFormat = ['http://www.myspace.com/Modules/PostTo/Pages/?l=3&u=', pageInfo.linkURL, '&t=', 'NUTRO+ULTRA'];
	addLink('myspace', 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);
}


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);
}
