$(document).ready(function() {
	$('a img.popup').parent().addClass('popup');
	$('a.popup').lightBox({
		txtImage: 'Obrazek',
		txtOf: 'z'	
	});
	
	$("div#shipping_value").html($("select#country option:selected").attr("ship")+' PLN');
	
}
);

$(document).bind("click", function() {
	value = $("select#country option:selected").attr("ship");
	$("div#shipping_value").html(value+' PLN');
});
