 $(document).ready(function(){
				$("#mediaPlayer").jmedia({version:"8,0"},{src:"http://assets.dubble.co.uk/swf/dubbletv_player2.swf",	width:660, height:500, quality:"best", wmode:"transparent", flashvars:"vidPath=load"});
				$tmpHeight = $('#content-cont').height();
				if($tmpHeight>$('#mpContainer').height()){
					//$('#content-cont').height('500px')
					//$('#content-cont').css({hight:"500px", overflow:"scroll"});
					$('#mpContainer').height($tmpHeight);
				}
				//alert ($tmpHeight);
				$('.watch-btn').click(function (){
					$('#mpContainer').empty();
					$('#mpContainer').append('<div id="mediaPlayer"></div>');
					$temp = "vidPath="+$(this).attr('href');
					$("#mediaPlayer").jmedia({version:"8,0"},{src:"http://assets.dubble.co.uk/swf/dubbletv_player2.swf",	width:660, height:500, quality:"best", wmode:"transparent",  flashvars:$temp });
					return false;
				});
			});