// JavaScript Document

/*Common functions in javascript*/
$(document).ready(function(){ 
		$(document).pngFix(); 
		$('ul.sf-menu').superfish(); 
		
		$(".nolink").click(function() {
			return false;
		});
		$('#ssp').flash({
			swf: 'home_show.swf',
			wmode: 'transparent',
			height: 400,
			width: 450
		});
		$('#photo_show').flash({
			swf: 'photo_page.swf',
			height: 700,
			width: 750
		});
		// Get latest tweet by oneeightymusic
    $.jTwitter('oneeightymusic', 3, function(data){
        $('#posts').empty();
        $.each(data, function(i, post){
            $('#posts').append(
                '<div class="post">'
                +' <div class="txt">'
                // See output-demo.js file for details
                +    post.text
                +' <a class="link_style" href="http://twitter.com/oneeightymusic" target="_blank"> more >> </a></div>'
                +'</div><br />'
            );
        });
    });

});
