$(document).ready(function() {
flowplayer("videobox", "scripts/flowplayer-3.1.1.swf");
$("div.scrollable").scrollable({
interval: 5000,
loop: true,
speed: 800,
onBeforeSeek: function() {
this.getItems().fadeTo(300, 0.2);
},
onSeek: function() {
this.getItems().fadeTo(300, 1);
}
});
$('.category img').css('opacity',0.85)
$(".category img").hover(function(){
		$(this).css('opacity',1.0);
		}, function () {
		$(this).css('opacity',0.85);
	});
});