// Varables for functions
var twitter_btn = {eventType: "mouseenter click", once : false, category : "Buttons", label : "Twitter Button"};	
var facebook_btn = {eventType: "mouseenter click", once : false, category : "Buttons", label : "Facebook Button"};
var rss_btn = {eventType: "mouseenter click", once : false, category : "Buttons", label : "RSS feed Button"};

var sidecallback = {eventType: "mouseenter click", once : false, category : "Contact", label : "Side Call Back"};
var footercallback = {eventType: "mouseenter click", once : false, category : "Contact", label : "Footer Call Back"};

var contactform = {eventType: "mouseenter click", once : false, category : "Contact", label : "Contact Form Submition"};
	
// Start Functions	
//TWITTER
$(function(){$("#twitter_btn").trackEvent(twitter_btn)});
//FACEBOOK
$(function(){$("#facebook_btn").trackEvent(facebook_btn)});
//RSS
$(function(){$("#rss_btn").trackEvent(rss_btn)});

//CALL BACK FORMS
$(function(){$("#sidecallback #fields #submit").trackEvent(sidecallback)});
$(function(){$("#bottomfunctions #callback #submit").trackEvent(footercallback)});

//CONTACT FORMS
$(function(){$("#form form .formSubmitRow input").trackEvent(contactform)});
