$(
	function(){
		// Trying to hyphenate some content
		// Hyphenator.hyphenate('#content p');
		// Hyphenator.hyphenate('#reviews-list .body');
		$('.video-player').each(function(i, item){
  		var id = $(item).attr('id');
  		var link = $('a',this).attr('href');
  		// var vars = {"enablejs":"true", "javascriptid":"video-player-1", "file":link, "shuffle":"false", "linktarget":"_self","width":"400","height":"300"};
  		var vars = {"file":link, "shuffle":"false", "linktarget":"_self","javascriptid":id};
  		var params = { salign:'lt', menu:'false', "allowfullscreen":"true", "allowscriptaccess":"always", 'resizing':'true'};
  		var attributes = { id:id, name:id };
  		var player = swfobject.embedSWF('/public/files/mediaplayer.swf', id, '400','300','9.0.0', '/public/files/expressInstall.swf', vars, params, attributes); //'350','262.5'
  	});
  	
  	$('form').validate();
	}
);