﻿// Wait for the DOM to load before we execute...
$(function($) {
	// SOCIAL NETWORKING LINKS //
	var thisPage = window.location.href
	var thisTitle = $("#ctl00_sel_IAPageName").text();
	
	var aryFb = {href:thisPage, layout:'standard', show_faces:false, width:'450', action:'like', colorscheme:'light', height:'35'};
	var strFb = jQuery.param(aryFb);
	$("#iaSocialLink-facebook iframe").attr('src','http://www.facebook.com/widgets/like.php?' + strFb);
	
	var aryDg = {url:thisPage, title:thisTitle};
	var strDg = jQuery.param(aryDg);
	$("a.DiggThisButton").attr('href','http://digg.com/submit?'+strDg);


});

// ***** REQUIRED FUNCTIONS ***** //
// ***** START - SOCIAL MEDIA ***** //
// *** DIG ***//
(function() {
var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];
s.type = 'text/javascript';
s.async = true;
s.src = 'http://widgets.digg.com/buttons.js';
s1.parentNode.insertBefore(s, s1);
})();
// ***** END - SOCIAL MEDIA ***** //

