﻿function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}


$(function(){

	$('a[@rel*=show_img]').each(function(){
	
		var target = $(this).attr("class");
		
		$(this).click(function(){ $("#" + target).trigger("click"); return false;});
	
	});

});