$(document).ready(function() {

	// input initial value
//	$("input[type=text]").initval();

	// fix png for IE
//	$('img[src$=.png], div').ifixpng();


	$('#play-btn').click(function(){
		if ( $.jwl ){
			$.jwl.sendEvent("play","true");
		}
		return false;
	});

	$(".play-btn, .img-btn").click(function(){
//		console.log(this);
		if ( $.jwl ){
			var f = $(this).attr("href");
			$.jwl.sendEvent('load', f);
			$.jwl.sendEvent('play', "true");
		}
		return false;
	});


});

function jwlready(obj){
	$.jwl = $("#"+obj['id'])[0];
//	console.log($.jwl);
}