 $(document).ready(function() {        var showNotification = IGA.utils.cookie.readCookie('tweet_notify');        if (showNotification == "true") {            $('#notify-table').slideDown('slow');            IGA.utils.cookie.createCookie("tweet_notify", "false", 1);         }        var fansLatestTweets = IGA.twitter();        //update resulting div container id and template path        //fansLatestTweets.setTemplateUrl('#Tweet_Container', '/_shared/prototype/aspnet_client/templates/tweetv2.htm');		var template = '<div class="s_tweets s_channel"> \			<h4 class="s_channel_title">Twitter Feed</h4> \				<div class="s_items"> \				{#foreach $T.results as post} \				<div class="s_item clearfix"> \			<a href="http://twitter.com/{$T.post.from_user}" target="_blank" class="s_avatar"><img src="{$T.post.profile_image_url}" /></a> \			<div class="singleUser"> \		<h3><a href="http://twitter.com/{$T.post.from_user}" target="_blank" class="s_username">{$T.post.from_user}</a></h3> \		<p class="s_copy">{IGA.cleanText($T.post.text)}</p> \		<p class="s_byline">&raquo; <em>{IGA.twitterRelativeTime($T.post.created_at)}</em></p> \		</div></div>{#/for}</div></div>';		fansLatestTweets.setTemplate('#Tweet_Container',template);        //update query name and number of tweets to display on page        fansLatestTweets.getLatestTweets('ladygaga', 12);        $('.tweet textarea:first').twitterCounter({            limit: 108,            counter: '#tweet_char_left',            okSize: 108,            okStyle: '.ok',            watchSize: 20,            watchStyle: '.watch',            warningSize: 10,            warningStyle: '.warning',            errorSize: 0,            errorStyle: '.twit_error'        });    });$(document).ready(function(){	 try {	        $('.cont_2').click(function() {                var elementClicked = $(this).attr("href");               var destination = $(elementClicked).offset().top;               $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 );               return false;            });	 }    catch (e) {}}); //end:DOM ready