$(function(){
		
	$(".tweet").tweet({
		join_text: "auto",
		username: "ZyncMusic",
		count: 3,
		auto_join_text_default: "",
		auto_join_text_ed: "",
		auto_join_text_ing: "",
		auto_join_text_reply: "",
		auto_join_text_url: "",
		loading_text: ""
	});
	
	$('#slider').slides({
		crossfade: true,
		effect: "fade",
		play: 5000,
		generateNextPrev: true
	});
	
	 $("#list img").lazyload({
	     placeholder : "/assets/img/grey.gif",       
	     effect      : "fadeIn"
	 });
});

function toggle_visibility(id) {
   var e = document.getElementById(id);
   if(e.style.display == 'block')
      e.style.display = 'none';
   else
      e.style.display = 'block';
}

$(document).ready(function(){
	
	$("#list.trailers .cell a").hover(function() {
        $(this).animate({ color: "red" }, 400);
        },function() {
        $(this).animate({ color: "#333" }, 400);
    });

	$("#list.trailers .cell").hover(function() {
	    $(this).stop().animate({ backgroundColor: "#000" }, 400);
	},function() {
	    $(this).stop().animate({ backgroundColor: "#294e77" }, 400);
	});

});
