function set_player(id, file, width, height) {
	//var file='http://movies.apple.com/media/us/iphone/2010/ads/apple-iphone4-under_the_covers-us-20101220_r848-9cie.mov?width=848&height=480';
	$('#'+id).html(QT_GenerateOBJECTText_XHTML(file, width, height, '','autoplay', 'false','emb#bgcolor', '#eeeeee','controller', 'true','cache', 'true','scale', 'aspect','pluginspage', 'http://www.apple.com/quicktime/download/','align', 'middle'));
}

function set_player_preview(id, file, width, height) {
	//var file='http://movies.apple.com/media/us/iphone/2010/ads/apple-iphone4-under_the_covers-us-20101220_r848-9cie.mov?width=848&height=480';
	$('#'+id).html(QT_GenerateOBJECTText_XHTML(file, width, height, '','autoplay', 'false','emb#bgcolor', '#eeeeee','controller', 'false','cache', 'true','scale', 'aspect','pluginspage', 'http://www.apple.com/quicktime/download/','align', 'middle', 'wmode','transparent'));
}

function set_player_autoplay(id, file, width, height) {
	//var file='http://movies.apple.com/media/us/iphone/2010/ads/apple-iphone4-under_the_covers-us-20101220_r848-9cie.mov?width=848&height=480';
	$('#'+id).html(QT_GenerateOBJECTText_XHTML(file, width, height, '','autoplay', 'true','emb#bgcolor', '#eeeeee','controller', 'true','cache', 'true','scale', 'aspect','pluginspage', 'http://www.apple.com/quicktime/download/','align', 'middle'));
}

$(document).ready(function() {
	/* menu */
	$('.menu .submenu-pos').hide();
	
	$('.menu li').hover(
		function (){
			$(this).addClass('hover');
			$(this).find('div.submenu-pos').show();
		},
		function (){
			$(this).removeClass('hover');
			$(this).find('div.submenu-pos').hide()
		}
	);
	
	/* cart table */
	$(".tab tr th:first-child").addClass("first");
	$(".tab tr td:first-child").addClass("first");
});


