var img;
var id;
var obj;
var height;
var video_title;

function ImageChange(img, id, obj)
{	
	$(id).parent('div').css("background", "url(images/loader.gif) no-repeat center");	
			$(id).fadeIn(1000);
			$(id).attr("src", img);	
			$('#image_link22').attr("href", img);	
}


////////////////////////////
// Main Video Player - flv
////////////////////////////

function home_video(id, height, video_title){
	$('#videos').fadeIn();
	$('#video-bg').fadeIn();
	$('#videos').html('');
	$('#videos').css("background", "#FFF url(images/loader.gif) no-repeat center");
	$('#videos').css("height", "500px"); 
		$.post('player.php?vid='+ id,{},function(data){
			$('#videos').html(data);
		}, 'text');
}

/////////////////////////////
// Close Video Container
/////////////////////////////

function close_video(){
	$('#videos').html('');
	$('#videos').css("background", "none");
	$('#videos').animate({height: 500 + 'px',}, 500);
	$('#video-bg').fadeOut();
	$('#videos').css("display", "none");
}  

