jQuery(function ($) {
	$.get("contents.php", function(data){
		$('#contents').html(data);
		$('#tabs').tabs(2, { fxFade: true, fxSpeed: 'speed' });
		
		new TWTR.Widget({ id: 'news', version: 2, type: 'profile', rpp: 4, interval: 6000, width: 540, height: 300,
			theme: { shell: { background: 'transparent', color: '#ffffff'},
				tweets: { background: '#transparent', color: '#ffffff', links: '#96bbff'}},
			features: { scrollbar: false, loop: false, live: false, hashtags: true, timestamp: true, avatars: false, behavior: 'all'}}).render().setUser('HOZmusic').start();
		
		//ANIMATE ON LOADING
		_height = $('#contents').css('height');
		$('#contents').css('height', '0px');		
		$('#contents').css('visibility', 'visible');
		$('#contents').animate({
			height: '272px'}, 'slow', function() {
			$('#contents').css('height', 'auto');
    // Animation complete.
    		$('#buttons').animate({opacity: 1}, 'speed', function() {
    			if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)){
    				document.getElementById("signature").src = "images/rda.png";
    				//document.getElementById("richard_signed_here").innerHTML = "<img src=\"images/rda.gif\">";
    			}
    			else document.getElementById("signature").src = "images/rda.gif";
    		});
		});
	});
});
