// Twitter
$(document).ready(function() {
	$("#twitter").getTwitter({
		userName: "6131records",
		numTweets: 1,
		loaderText: "Loading tweets...",
		slideIn: true,
		slideDuration: 750,
		showHeading: true,
		headingText: "",
		showProfileLink: false,
		showTimestamp: true
});
});
// Supersize BG
$(function(){
	$.fn.supersized.options = {  
		startwidth: 640,  
		startheight: 480,
		vertical_center: 1,
		slideshow: 1,
		navigation: 1,
		transition: 1, //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
		pause_hover: 0,
		slide_counter: 1,
		slide_captions: 1,
		slide_interval: 3000  
	};
    $('#supersize').supersized(); 
});

// Cufon
Cufon.replace('.nav_wrapper ul li a');
Cufon.replace('h2');
Cufon.replace('h3');
Cufon.replace('.home_records_artist');
Cufon.replace('.records_artist');
Cufon.replace('.fwp_title a');

// Home Page Slider 

$(function(){
	$('#loopedSlider').loopedSlider({
		autoStart: 5999,
		restart: 2000,
		containerClick: false,
		slidespeed: 400,
	});
});

// mp3 player

$(document).ready(function(){
	// default options
	$(".mp3").jmp3();
	// custom options
	$("#mysong").jmp3({
		backcolor: "000000",
		forecolor: "00ff00",
		width: 200,
		showdownload: "true"
	});
});


