$(function () {
	$("#carousel").easySlider(
		{prevId: 'carousel-prev',
		nextId: 'carousel-next',
		auto: true, 
		continuous: true	
		}
	);	

	$('#scrollbar').scrollbar();
});

function chkSearch(){
	if (document.getElementById('txtHeaderSearch').value==""){
	 	alert("Please enter search text");
		return false;
	}
	return true;
}

function showVideo(vid) {
	var video = document.getElementById('video_box');
	var tstr = '<object width="254" height="143">'+"\n";
	tstr += '    <param name="movie" value="http://www.youtube.com/v/'+vid+'&ap=%2526fmt%3D18&rel=0" />'+"\n";
	tstr += '    <param name="wmode" value="transparent"></param>'+"\n";
	tstr += '    <embed src="http://www.youtube.com/v/'+vid+'&ap=%2526fmt%3D18&rel=0" type="application/x-shockwave-flash" wmode="transparent" width="254" height="143"></embed>'+"\n";
	tstr += '</object>'+"\n";
	video.innerHTML=tstr;
}

function showVideoDesc(desc) {
	var video = document.getElementById('video_description');
	video.innerHTML=desc;
}

function showLargeVideo(vid) {
	var video = document.getElementById('video_box');
	var tstr = '<object width="500" height="400">'+"\n";
	tstr += '    <param name="movie" value="http://www.youtube.com/v/'+vid+'&ap=%2526fmt%3D18&rel=0" />'+"\n";
	tstr += '    <param name="wmode" value="transparent"></param>'+"\n";
	tstr += '    <embed src="http://www.youtube.com/v/'+vid+'&ap=%2526fmt%3D18&rel=0" type="application/x-shockwave-flash" wmode="transparent" width="500" height="400"></embed>'+"\n";
	tstr += '</object>'+"\n";
	video.innerHTML=tstr;
}

function showVimeo(vid) {
	var video = document.getElementById('video_box');
	var tstr = '<object class="swf_holder" type="application/x-shockwave-flash" width="254" height="143" data="http://www.vimeo.com/moogaloop.swf?clip_id='+vid+'&server=www.vimeo.com&autoplay=0&fullscreen=1&show_portrait=0&show_title=0&show_byline=0&color=00ADEF&context=&context_id=&hd_off=0&force_info=1&buildnum=27087">'+"\n";
	tstr += '    <param name="quality" value="high" />'+"\n";
	tstr += '    <param name="allowfullscreen" value="true" />'+"\n";
	tstr += '    <param name="AllowScriptAccess" value="always" />'+"\n";
	tstr += '    <param name="wmode" value="transparent" />'+"\n";
	tstr += '    <param name="scale" value="showAll" />'+"\n";
	tstr += '    <param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id='+vid+'&server=www.vimeo.com&autoplay=0&fullscreen=1&show_portrait=0&show_title=0&show_byline=0&color=00ADEF&context=&context_id=&hd_off=0&force_info=1&buildnum=27087" />'+"\n";
	tstr += '</object>'+"\n";
	video.innerHTML=tstr;
}
function showLargeVimeo(vid) {
	var video = document.getElementById('video_box');
	var tstr = '<object class="swf_holder" type="application/x-shockwave-flash" width="600" height="400" data="http://www.vimeo.com/moogaloop.swf?clip_id='+vid+'&server=www.vimeo.com&autoplay=0&fullscreen=1&show_portrait=0&show_title=0&show_byline=0&color=00ADEF&context=&context_id=&hd_off=0&force_info=1&buildnum=27087">'+"\n";
	tstr += '    <param name="quality" value="high" />'+"\n";
	tstr += '    <param name="allowfullscreen" value="true" />'+"\n";
	tstr += '    <param name="AllowScriptAccess" value="always" />'+"\n";
	tstr += '    <param name="wmode" value="transparent" />'+"\n";
	tstr += '    <param name="scale" value="showAll" />'+"\n";
	tstr += '    <param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id='+vid+'&server=www.vimeo.com&autoplay=0&fullscreen=1&show_portrait=0&show_title=0&show_byline=0&color=00ADEF&context=&context_id=&hd_off=0&force_info=1&buildnum=27087" />'+"\n";
	tstr += '</object>'+"\n";
	video.innerHTML=tstr;
}
