// JavaScript Document
// http://malsup.com/jquery/block/#demos

//http://malsup.com/jquery/media/#options

//http://code.google.com/p/swfobject/wiki/documentation

//http://developer.longtailvideo.com/trac/wiki/FlashVars

//http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html

$(document).ready(function(){


	

	
	$('#pane').jScrollPane({showArrows:true, scrollbarWidth: 17, dragMaxHeight: 150});
	
	
	
	
		$("div.scrollable").scrollable(
			{ 
 
				// one configuration property 
				size: 1
			 
				// ... the rest of the configuration properties 
			}					   
		); 
		var no = $("div.scrollable").scrollable().getItems().size();
		if(no == 1){
			//salert(no);
			$('.next').hide();
			
		}
	
	
		var hasvideo = $('#media').attr("alt");
		
		if(hasvideo == 'true'){
				var videofile = $('#media').attr("title");
				//alert(videofile);
		
	
			var flashvars = {
				file:"news_media/"+videofile, 
				autostart:"true",
				controlbar:"over",
				frontcolor :"#ffffff",
				screencolor :"#ffffff",
				bgcolor: "#ffffff",
				stretching:"fill",
				smoothing: "false",
				skin: "mediaplayer/bekle.swf",
				volume : "90"
			};
						
			var params = {
				allowfullscreen:"true", 
				allowscriptaccess:"always",
				bgcolor: "#ffffff"
			};					
						
					  
			/*swfobject.embedSWF("mediaplayer.swf", "media", "540", "300", "9.0.0", null, flashvars, params, null); */
			swfobject.embedSWF("player-licensed-viral.swf", "media", "540", "300", "9.0.0", null, flashvars, params, null);
			
			
			$('#imagecontent').hide();
	
		}
		else{
			$('#media').hide();
		}
		
		
	
	
		
	
	
	
	
	
// END TAG
});




