var $j = jQuery.noConflict();

$j(document).ready(function() {

$j.fn.twitterSearch.defaults = {

		url: 'http://search.twitter.com/search.json?callback=?&q=',

		anchors: true,				// true or false (enable embedded links in tweets)

		animOutSpeed: 1600,			// speed of animation for top tweet when removed

		animInSpeed: 1500,			// speed of scroll animation for moving tweets up

		animOut: { opacity: 0 },	// animation of top tweet when it is removed

		applyStyles: true,			// true or false (apply default css styling or not)

		avatar: false,				// true or false (show or hide twitter profile images)

		bird: true,					// true or false (show or hide twitter bird image)

		birdLink: false,			// url that twitter bird image should like to

		birdSrc: '/images/twitter-bird.png', // twitter bird image

		colorExterior: null,        // css override of frame border-color and title background-color

		colorInterior: null,        // css override of container background-color

		filter: null,               // callback fn to filter tweets:  fn(tweetJson) { /* return false to skip tweet */ }

		formatter: null,			// callback fn to build tweet markup

		pause: false,				// true or false (pause on hover)

		term: '',					// twitter search term

		time: true,					// true or false (show or hide the time that the tweet was sent)

		timeout: 425,				// delay betweet tweet scroll

		title: null,				// title text to display when frame option is true (default = 'term' text)

		titleLink: null,			// url for title link

		css: {


			// default styling

			a:     { textDecoration: 'none', color: '#ffffff' },

			bird:  { width: '50px', height: '50px', position: 'absolute', left: '-45px', top: '-10px', border: 'none' },

			container: { overflow: 'hidden', backgroundColor: '', height: '100%' },

			fail:  { background: '#6cc5c3 url(http://cloud.github.com/downloads/malsup/twitter/failwhale.png) no-repeat 50% 50%', height: '100%', padding: '10px' },

			frame: { border: '0px solid #A23B32', borderRadius: '10px', '-moz-border-radius': '10px', '-webkit-border-radius': '10px' },

			tweet: { padding: '5px 10px', clear: 'left' },

			img:   { 'float': 'left', margin: '5px', width: '48px', height: '48px' },

			loading: { padding: '20px', textAlign: 'center', color: '#888' },

			text:  {},

			time:  { fontSize: 'smaller', color: '#888' },

			title: { backgroundColor: '#C2CFF1', margin: '0', padding: '0 0 0px 0', textAlign: 'center', fontWeight: 'bold', fontSize: 'large', position: 'relative' },

			titleLink: { textDecoration: 'none', color: '' },

			user:  { fontWeight: 'bold' }
			

		}

	};	

	

	$j('#twitter2').twitterSearch({

		term: 'transcend_de',

		title: '',

		titleLink: '',

		css: { 

			img: { width: '25px', height: '25px' } 

		}

	});

});
