$(document).ready(function()
{
	$('.scrollable').scrollable({ size:1, speed:300, clickable:false }); 
	autoFill('#s','Search','#aaa','#444');
});

function autoFill(id, text, startColor, endColor)
{
	$(id).css({ color: startColor }).attr({ value: text }).focus(function()
	{
		if($(this).val()==text)
		{
			$(this).val("").css({ color: endColor });
		}
	}).blur(function()
	{
		if($(this).val()=="")
		{
			$(this).css({ color: startColor }).val(text);
		}
	});		
}

function playVideo(src, title, desc, runtime)
{
	var flashvars = {};
	var params = {wmode:'transparent',allowscriptaccess:'always'};
	var attributes = {};
	swfobject.embedSWF(src, "main-video", "624", "380", "9.0.0","", flashvars, params, attributes);
	
	$('#main-video-description h3').html(title).next().html(runtime).next().html(desc);
	return false;
}