$(function(){
	var index;

	function template_image_change() {
		index = ('0' + String($('#template').get(0).selectedIndex + 1)).slice(-2);

		$('#template_image').html(
			'<a class="thickbox" href="/sample/?preview=1&template=press001' + index + '&stylesheet=press001' + index + '&TB_iframe=true"><img src="/sample/wp-content/themes/press001' + index + '/screenshot.png" width="220" /></a>'
		);

		// thickbox init
		tb_init('a.thickbox, area.thickbox, input.thickbox');//pass where to apply thickbox
		imgLoader = new Image();// preload image
		imgLoader.src = tb_pathToImage;
	}

	$('#template').change(function(){
		template_image_change();
	});

	if ($('#template').get(0)) {
   	template_image_change();
   }
});

function guideView() {
		
}
